1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
|
%%
%% %CopyrightBegin%
%%
%% Copyright Ericsson AB 2021-2024. All Rights Reserved.
%%
%% Licensed under the Apache License, Version 2.0 (the "License");
%% you may not use this file except in compliance with the License.
%% You may obtain a copy of the License at
%%
%% http://www.apache.org/licenses/LICENSE-2.0
%%
%% Unless required by applicable law or agreed to in writing, software
%% distributed under the License is distributed on an "AS IS" BASIS,
%% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
%% See the License for the specific language governing permissions and
%% limitations under the License.
%%
%% %CopyrightEnd%
%%
-module(gb_sets_property_test_SUITE).
-include_lib("common_test/include/ct.hrl").
-compile(export_all).
-compile(nowarn_export_all).
all() -> [
add_case,
balance_case,
delete_case, delete_any_case,
difference_case,
from_ordset_case,
insert_case,
is_member_case,
iterator_case, iterator_from_case,
larger_case,
largest_case,
singleton_case,
smaller_case,
smallest_case,
take_largest_case,
take_smallest_case
].
init_per_suite(Config) ->
ct_property_test:init_per_suite(Config).
end_per_suite(Config) ->
Config.
add_case(Config) ->
do_proptest(prop_add, Config).
balance_case(Config) ->
do_proptest(prop_balance, Config).
delete_case(Config) ->
do_proptest(prop_delete, Config).
delete_any_case(Config) ->
do_proptest(prop_delete_any, Config).
difference_case(Config) ->
do_proptest(prop_difference, Config).
from_ordset_case(Config) ->
do_proptest(prop_from_ordset, Config).
insert_case(Config) ->
do_proptest(prop_insert, Config).
is_member_case(Config) ->
do_proptest(prop_is_member, Config).
iterator_case(Config) ->
do_proptest(prop_iterator, Config).
iterator_from_case(Config) ->
do_proptest(prop_iterator_from, Config).
larger_case(Config) ->
do_proptest(prop_larger, Config).
largest_case(Config) ->
do_proptest(prop_largest, Config).
singleton_case(Config) ->
do_proptest(prop_singleton, Config).
smaller_case(Config) ->
do_proptest(prop_smaller, Config).
smallest_case(Config) ->
do_proptest(prop_smallest, Config).
take_largest_case(Config) ->
do_proptest(prop_take_largest, Config).
take_smallest_case(Config) ->
do_proptest(prop_take_smallest, Config).
do_proptest(Prop, Config) ->
ct_property_test:quickcheck(
gb_sets_prop:Prop(),
Config).
|