-
Notifications
You must be signed in to change notification settings - Fork 167
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add 25.1.1 in tested OTP versions (#299)
While at it, do some minor copyright-related updates.
- Loading branch information
Showing
4 changed files
with
13 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
%%% -*- coding: utf-8; erlang-indent-level: 2 -*- | ||
%%% ------------------------------------------------------------------- | ||
%%% Copyright (c) 2017-2021 Andreas Löscher <[email protected]> | ||
%%% Copyright (c) 2017-2022 Andreas Löscher <[email protected]> | ||
%%% and Kostis Sagonas <[email protected]> | ||
%%% | ||
%%% This file is part of PropEr. | ||
|
@@ -18,7 +18,7 @@ | |
%%% You should have received a copy of the GNU General Public License | ||
%%% along with PropEr. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
%%% @copyright 2017-2021 Andreas Löscher and Kostis Sagonas | ||
%%% @copyright 2017-2022 Andreas Löscher and Kostis Sagonas | ||
%%% @version {@version} | ||
%%% @author Andreas Löscher and Kostis Sagonas | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
%%% -*- coding: utf-8 -*- | ||
%%% -*- erlang-indent-level: 2 -*- | ||
%%% -*- coding: utf-8; erlang-indent-level: 2 -*- | ||
%%% ------------------------------------------------------------------- | ||
%%% Copyright (c) 2017-2021 Andreas Löscher <[email protected]> | ||
%%% Copyright (c) 2017-2022 Andreas Löscher <[email protected]> | ||
%%% and Kostis Sagonas <[email protected]> | ||
%%% | ||
%%% This file is part of PropEr. | ||
|
@@ -19,17 +18,17 @@ | |
%%% You should have received a copy of the GNU General Public License | ||
%%% along with PropEr. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
%%% @copyright 2017-2021 Andreas Löscher and Kostis Sagonas | ||
%%% @copyright 2017-2022 Andreas Löscher and Kostis Sagonas | ||
%%% @version {@version} | ||
%%% @author Andreas Löscher | ||
|
||
%%% @doc This module defines the top-level behaviour for Targeted | ||
%%% Property-Based Testing (TPBT). Using TPBT the input generation | ||
%%% is no longer random, but guided by a search strategy to increase | ||
%%% the probability of finding failing input. For this to work the user | ||
%%% the probability of finding failing input. For this to work, the user | ||
%%% has to specify a search strategy and also needs to extract | ||
%%% utility-values from the system under test that the search strategy | ||
%%% then tries to maximize. | ||
%%% utility values from the system under test that the search strategy | ||
%%% then tries to maximize (or minimize). | ||
%%% | ||
%%% To use TPBT the test specification macros `?FORALL_TARGETED`, `?EXISTS', | ||
%%% and `?NOT_EXISTS' are used. The typical structure for a targeted | ||
|