EXPERIMENTAL support in
This module is a first step to run property-based tests in the
The idea is to have a
A typical
-include_lib("common_test/include/ct.hrl"). all() -> [prop_ftp_case]. init_per_suite(Config) -> ct_property_test:init_per_suite(Config). %%%---- test case prop_ftp_case(Config) -> ct_property_test:quickcheck( ftp_simple_client_server:prop_ftp(Config), Config ).
This is experimental code that can be changed or removed anytime without any warning.
Initializes
This function investigates if support is available for either
Quickcheck, PropEr, or Triq. The options
The function is intended to be called in function
The property tests are assumed to be in subdirectory
Calls quickcheck and returns the result in a form suitable for
This function is intended to be called in the test cases in the test suite.