xtd 0.2.0
xtd::tunit::collection_assume Class Referencefinal

Definition

The collection_assume class contains a collection of static methods that implement the most collection assertions used in xtd::tUnit.

Namespace
xtd::tunit
Library
xtd.tunit
Remarks
Assumptions are intended to express the state a test must be in to provide a meaningful result. They are functionally similar to assertions, however a unmet assumption will produce an aborted test result, as opposed to a failure.
Examples
This example show how to used some methods :
#include <xtd/xtd.tunit>
using namespace std;
using namespace xtd::tunit;
namespace unit_tests {
// The class test must be declared with test_class_ helper.
class test_class_(test) {
public:
void test_method_(test_case1) {
collection_assume::is_empty(vector<int> {});
}
void test_method_(test_case2) {
collection_assume::is_empty(vector<int> {1, 2, 3});
}
void test_method_(test_case3) {
collection_assume::is_ordered(vector<int> {1, 3, 2});
}
};
}
auto main()->int {
return console_unit_test().run();
}
// This code can produce the following output:
//
// Start 3 tests from 1 test case
// Run tests:
// SUCCEED test.test_case1 (0 ms total)
// ABORTED test.test_case2 (0 ms total)
// Test aborted
// Expected: <empty>
// But was: < 1, 2, 3 >
// Stack Trace: in |---OMITTED---|/collection_assume.cpp:14
// ABORTED test.test_case3 (0 ms total)
// Test aborted
// Expected: < 1, 2, 3 >
// But was: < 1, 3, 2 >
// Stack Trace: in |---OMITTED---|/collection_assume.cpp:18
//
// Test results:
// SUCCEED 1 test.
// ABORTED 2 tests.
// End 3 tests from 1 test case ran. (0 ms total)

Methods

template<typename expected_t , typename collection_t >
static void all_items_are_instances_of (const collection_t &collection)
 Assumes that all collection items are of the type supplied or a derived type. More...
 
template<typename expected_t , typename collection_t >
static void all_items_are_instances_of (const collection_t &collection, const std::string &message)
 Assumes that all collection items are of the type supplied or a derived type. More...
 
template<typename expected_t , typename collection_t >
static void all_items_are_instances_of (const collection_t &collection, const xtd::diagnostics::stack_frame &stack_frame)
 Assumes that all collection items are of the type supplied or a derived type. More...
 
template<typename expected_t , typename collection_t >
static void all_items_are_instances_of (const collection_t &collection, const std::string &message, const xtd::diagnostics::stack_frame &stack_frame)
 Assumes that all collection items are of the type supplied or a derived type. More...
 
template<typename collection_t >
static void all_items_are_not_null (const collection_t &collection)
 Assumes that all collection items are not null. More...
 
template<typename collection_t >
static void all_items_are_not_null (const collection_t &collection, const std::string &message)
 Assumes that all collection items are not null. More...
 
template<typename collection_t >
static void all_items_are_not_null (const collection_t &collection, const xtd::diagnostics::stack_frame &stack_frame)
 Assumes that all collection items are not null. More...
 
template<typename collection_t >
static void all_items_are_not_null (const collection_t &collection, const std::string &message, const xtd::diagnostics::stack_frame &stack_frame)
 Assumes that all collection items are not null. More...
 
template<typename collection_t >
static void all_items_are_unique (const collection_t &collection)
 Assumes that all collection items are unique. More...
 
template<typename collection_t >
static void all_items_are_unique (const collection_t &collection, const std::string &message)
 Assumes that all collection items are unique. More...
 
template<typename collection_t >
static void all_items_are_unique (const collection_t &collection, const xtd::diagnostics::stack_frame &stack_frame)
 Assumes that all collection items are unique. More...
 
template<typename collection_t >
static void all_items_are_unique (const collection_t &collection, const std::string &message, const xtd::diagnostics::stack_frame &stack_frame)
 Assumes that all collection items are unique. More...
 
template<typename expected_t , typename actual_t >
static void are_equal (const expected_t &expected, const actual_t &actual)
 Assumes that all collection items are equal. More...
 
template<typename expected_t , typename actual_t >
static void are_equal (const expected_t &expected, const actual_t &actual, const std::string &message)
 Assumes that all collection items are equal. More...
 
template<typename expected_t , typename actual_t >
static void are_equal (const expected_t &expected, const actual_t &actual, const xtd::diagnostics::stack_frame &stack_frame)
 Assumes that all collection items are equal. More...
 
template<typename expected_t , typename actual_t >
static void are_equal (const expected_t &expected, const actual_t &actual, const std::string &message, const xtd::diagnostics::stack_frame &stack_frame)
 Assumes that all collection items are equal. More...
 
template<typename expected_t , typename actual_t >
static void are_equivalent (const expected_t &expected, const actual_t &actual)
 Assumes that all collection items are equivalent. More...
 
template<typename expected_t , typename actual_t >
static void are_equivalent (const expected_t &expected, const actual_t &actual, const std::string &message)
 Assumes that all collection items are equivalent. More...
 
template<typename expected_t , typename actual_t >
static void are_equivalent (const expected_t &expected, const actual_t &actual, const xtd::diagnostics::stack_frame &stack_frame)
 Assumes that all collection items are equivalent. More...
 
template<typename expected_t , typename actual_t >
static void are_equivalent (const expected_t &expected, const actual_t &actual, const std::string &message, const xtd::diagnostics::stack_frame &stack_frame)
 Assumes that all collection items are equivalent. More...
 
template<typename expected_t , typename actual_t >
static void are_not_equal (const expected_t &expected, const actual_t &actual)
 Assumes that all collection items are not equal. More...
 
template<typename expected_t , typename actual_t >
static void are_not_equal (const expected_t &expected, const actual_t &actual, const std::string &message)
 Assumes that all collection items are not equal. More...
 
template<typename expected_t , typename actual_t >
static void are_not_equal (const expected_t &expected, const actual_t &actual, const xtd::diagnostics::stack_frame &stack_frame)
 Assumes that all collection items are not equal. More...
 
template<typename expected_t , typename actual_t >
static void are_not_equal (const expected_t &expected, const actual_t &actual, const std::string &message, const xtd::diagnostics::stack_frame &stack_frame)
 Assumes that all collection items arenot equal. More...
 
template<typename expected_t , typename actual_t >
static void are_not_equivalent (const expected_t &expected, const actual_t &actual)
 Assumes that all collection items are not equivalent. More...
 
template<typename expected_t , typename actual_t >
static void are_not_equivalent (const expected_t &expected, const actual_t &actual, const std::string &message)
 Assumes that all collection items are not equivalent. More...
 
template<typename expected_t , typename actual_t >
static void are_not_equivalent (const expected_t &expected, const actual_t &actual, const xtd::diagnostics::stack_frame &stack_frame)
 Assumes that all collection items are not equivalent. More...
 
template<typename expected_t , typename actual_t >
static void are_not_equivalent (const expected_t &expected, const actual_t &actual, const std::string &message, const xtd::diagnostics::stack_frame &stack_frame)
 Assumes that all collection items are not equivalent. More...
 
template<typename expected_t , typename actual_t >
static void contains (const expected_t &expected, const actual_t &actual)
 Assumes that ollection contains all items. More...
 
template<typename expected_t , typename actual_t >
static void contains (const expected_t &expected, const actual_t &actual, const std::string &message)
 Assumes that collection contains all items. More...
 
template<typename expected_t , typename actual_t >
static void contains (const expected_t &expected, const actual_t &actual, const xtd::diagnostics::stack_frame &stack_frame)
 Assumes that collection contains all items. More...
 
template<typename expected_t , typename actual_t >
static void contains (const expected_t &expected, const actual_t &actual, const std::string &message, const xtd::diagnostics::stack_frame &stack_frame)
 Assumes that collection contains all items. More...
 
template<typename expected_t , typename actual_t >
static void does_not_contain (const expected_t &expected, const actual_t &actual)
 Assumes that collection contains all items. More...
 
template<typename expected_t , typename actual_t >
static void does_not_contain (const expected_t &expected, const actual_t &actual, const std::string &message)
 Assumes that collection contains all items. More...
 
template<typename expected_t , typename actual_t >
static void does_not_contain (const expected_t &expected, const actual_t &actual, const xtd::diagnostics::stack_frame &stack_frame)
 Assumes that collection contains all items. More...
 
template<typename expected_t , typename actual_t >
static void does_not_contain (const expected_t &expected, const actual_t &actual, const std::string &message, const xtd::diagnostics::stack_frame &stack_frame)
 Assumes that collection contains all items. More...
 
template<typename value_t >
static void is_empty (const value_t &value)
 Assumes that collection contains an item. More...
 
template<typename value_t >
static void is_empty (const value_t &value, const xtd::diagnostics::stack_frame &stack_frame)
 Assumes that collection contains an item. More...
 
template<typename value_t >
static void is_empty (const value_t &value, const std::string &message)
 Assumes that collection contains an item. More...
 
template<typename value_t >
static void is_empty (const value_t &value, const std::string &message, const xtd::diagnostics::stack_frame &stack_frame)
 Assumes that collection contains an item. More...
 
template<typename value_t >
static void is_not_empty (const value_t &value)
 Assumes that collection does not contain any item. More...
 
template<typename value_t >
static void is_not_empty (const value_t &value, const xtd::diagnostics::stack_frame &stack_frame)
 Assumes that collection or traits does not contain any item. More...
 
template<typename value_t >
static void is_not_empty (const value_t &value, const std::string &message)
 Assumes that collection or traits does not contain any item. More...
 
template<typename value_t >
static void is_not_empty (const value_t &value, const std::string &message, const xtd::diagnostics::stack_frame &stack_frame)
 Assumes that collection or traits does not contain any item. More...
 
template<typename value_t >
static void is_ordered (const value_t &value)
 Assumes that collection is ordered. More...
 
template<typename value_t >
static void is_ordered (const value_t &value, const xtd::diagnostics::stack_frame &stack_frame)
 Assumes that collection is ordered. More...
 
template<typename value_t >
static void is_ordered (const value_t &value, const std::string &message)
 Assumes that collection is ordered. More...
 
template<typename value_t >
static void is_ordered (const value_t &value, const std::string &message, const xtd::diagnostics::stack_frame &stack_frame)
 Assumes that collection is ordered. More...
 

Member Function Documentation

◆ all_items_are_instances_of() [1/4]

template<typename expected_t , typename collection_t >
static void xtd::tunit::collection_assume::all_items_are_instances_of ( const collection_t &  collection)
inlinestatic

Assumes that all collection items are of the type supplied or a derived type.

Parameters
valueThe object to verify
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<std::ios_base*> a = {&std::cout, &std::cerr, &std::cin};
xtd::tunit::collection_assume::all_items_are_instances_of<std::ios_base*>(a); // test ok.
xtd::tunit::collection_assume::all_items_are_instances_of<std::basic_ostream<char>*>(a);// test throws an abort_error exception..

◆ all_items_are_instances_of() [2/4]

template<typename expected_t , typename collection_t >
static void xtd::tunit::collection_assume::all_items_are_instances_of ( const collection_t &  collection,
const std::string &  message 
)
inlinestatic

Assumes that all collection items are of the type supplied or a derived type.

Parameters
valueThe object to verify
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<std::ios_base*> a = {&std::cout, &std::cerr, &std::cin};
xtd::tunit::collection_assume::all_items_are_instances_of<std::ios_base*>(a, "User message..."); // test ok.
xtd::tunit::collection_assume::all_items_are_instances_of<std::basic_ostream<char>*>(a, "User message...");// test throws an abort_error exception..

◆ all_items_are_instances_of() [3/4]

template<typename expected_t , typename collection_t >
static void xtd::tunit::collection_assume::all_items_are_instances_of ( const collection_t &  collection,
const xtd::diagnostics::stack_frame stack_frame 
)
inlinestatic

Assumes that all collection items are of the type supplied or a derived type.

Parameters
valueThe object to verify
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<std::ios_base*> a = {&std::cout, &std::cerr, &std::cin};
xtd::tunit::collection_assume::all_items_are_instances_of<std::ios_base*>(a, csf_); // test ok.
xtd::tunit::collection_assume::all_items_are_instances_of<std::basic_ostream<char>*>(a, csf_);// test throws an abort_error exception..

◆ all_items_are_instances_of() [4/4]

template<typename expected_t , typename collection_t >
static void xtd::tunit::collection_assume::all_items_are_instances_of ( const collection_t &  collection,
const std::string &  message,
const xtd::diagnostics::stack_frame stack_frame 
)
inlinestatic

Assumes that all collection items are of the type supplied or a derived type.

Parameters
valueThe object to verify
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<std::ios_base*> a = {&std::cout, &std::cerr, &std::cin};
xtd::tunit::collection_assume::all_items_are_instances_of<std::ios_base*>(a, "User message...", csf_); // test ok.
xtd::tunit::collection_assume::all_items_are_instances_of<std::basic_ostream<char>*>(a, "User message...", csf_);// test throws an abort_error exception..

◆ all_items_are_not_null() [1/4]

template<typename collection_t >
static void xtd::tunit::collection_assume::all_items_are_not_null ( const collection_t &  collection)
inlinestatic

Assumes that all collection items are not null.

Parameters
valueThe object to verify
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
int i1 = 0, i2 = 3;
std::vector<int*> a1 = {&i1, &i2};
std::vector<int*> a2 = {&i1, &i2, nullptr};
xtd::tunit::collection_assume::all_items_are_not_null(a2);// test throws an abort_error exception..
Examples:
collection_assume_all_items_are_not_null.cpp.

◆ all_items_are_not_null() [2/4]

template<typename collection_t >
static void xtd::tunit::collection_assume::all_items_are_not_null ( const collection_t &  collection,
const std::string &  message 
)
inlinestatic

Assumes that all collection items are not null.

Parameters
valueThe object to verify
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
int i1 = 0, i2 = 3;
std::vector<int*> a1 = {&i1, &i2};
xtd::tunit::collection_assume::all_items_are_not_null(a1, "User message..."); // test ok.
std::vector<int*> a2 = {&i1, &i2, nullptr};
xtd::tunit::collection_assume::all_items_are_not_null(a2, "User message...");// test throws an abort_error exception..

◆ all_items_are_not_null() [3/4]

template<typename collection_t >
static void xtd::tunit::collection_assume::all_items_are_not_null ( const collection_t &  collection,
const xtd::diagnostics::stack_frame stack_frame 
)
inlinestatic

Assumes that all collection items are not null.

Parameters
valueThe object to verify
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
int i1 = 0, i2 = 3;
std::vector<int*> a1 = {&i1, &i2};
std::vector<int*> a2 = {&i1, &i2, nullptr};
xtd::tunit::collection_assume::all_items_are_not_null(a2, csf_);// test throws an abort_error exception..

◆ all_items_are_not_null() [4/4]

template<typename collection_t >
static void xtd::tunit::collection_assume::all_items_are_not_null ( const collection_t &  collection,
const std::string &  message,
const xtd::diagnostics::stack_frame stack_frame 
)
inlinestatic

Assumes that all collection items are not null.

Parameters
valueThe object to verify
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
int i1 = 0, i2 = 3;
std::vector<int*> a1 = {&i1, &i2};
xtd::tunit::collection_assume::all_items_are_not_null(a1, "User message...", csf_); // test ok.
std::vector<int*> a2 = {&i1, &i2, nullptr};
xtd::tunit::collection_assume::all_items_are_not_null(a2, "User message...", csf_);// test throws an abort_error exception..

◆ all_items_are_unique() [1/4]

template<typename collection_t >
static void xtd::tunit::collection_assume::all_items_are_unique ( const collection_t &  collection)
inlinestatic

Assumes that all collection items are unique.

Parameters
valueThe object to verify
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> a1 = {1, 2, 3, 4};
std::vector<int> a2 = {1, 2, 3, 4, 1};
xtd::tunit::collection_assume::all_items_are_unique(a2);// test throws an abort_error exception..
Examples:
collection_assume_all_items_are_unique.cpp.

◆ all_items_are_unique() [2/4]

template<typename collection_t >
static void xtd::tunit::collection_assume::all_items_are_unique ( const collection_t &  collection,
const std::string &  message 
)
inlinestatic

Assumes that all collection items are unique.

Parameters
valueThe object to verify
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> a1 = {1, 2, 3, 4};
xtd::tunit::collection_assume::all_items_are_unique(a1, "User message..."); // test ok.
std::vector<int> a2 = {1, 2, 3, 4, 1};
xtd::tunit::collection_assume::all_items_are_unique(a2, "User message...");// test throws an abort_error exception..

◆ all_items_are_unique() [3/4]

template<typename collection_t >
static void xtd::tunit::collection_assume::all_items_are_unique ( const collection_t &  collection,
const xtd::diagnostics::stack_frame stack_frame 
)
inlinestatic

Assumes that all collection items are unique.

Parameters
valueThe object to verify
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> a1 = {1, 2, 3, 4};
std::vector<int> a2 = {1, 2, 3, 4, 1};
xtd::tunit::collection_assume::all_items_are_unique(a2, csf_);// test throws an abort_error exception..

◆ all_items_are_unique() [4/4]

template<typename collection_t >
static void xtd::tunit::collection_assume::all_items_are_unique ( const collection_t &  collection,
const std::string &  message,
const xtd::diagnostics::stack_frame stack_frame 
)
inlinestatic

Assumes that all collection items are unique.

Parameters
valueThe object to verify
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> a1 = {1, 2, 3, 4};
xtd::tunit::collection_assume::all_items_are_unique(a1, "User message...", csf_); // test ok.
std::vector<int> a2 = {1, 2, 3, 4, 1};
xtd::tunit::collection_assume::all_items_are_unique(a2, "User message...", csf_);// test throws an abort_error exception..

◆ are_equal() [1/4]

template<typename expected_t , typename actual_t >
static void xtd::tunit::collection_assume::are_equal ( const expected_t &  expected,
const actual_t &  actual 
)
inlinestatic

Assumes that all collection items are equal.

Parameters
valueThe object to verify
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_assume::are_equal({1, 2, 3, 4}, a); // test ok.
xtd::tunit::collection_assume::are_equal({4, 3, 2, 1}, a);// test throws an abort_error exception..
Examples:
collection_assume_are_equal.cpp.

◆ are_equal() [2/4]

template<typename expected_t , typename actual_t >
static void xtd::tunit::collection_assume::are_equal ( const expected_t &  expected,
const actual_t &  actual,
const std::string &  message 
)
inlinestatic

Assumes that all collection items are equal.

Parameters
valueThe object to verify
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_assume::are_equal({1, 2, 3, 4}, a, "User message..."); // test ok.
xtd::tunit::collection_assume::are_equal({4, 3, 2, 1}, a, "User message...");// test throws an abort_error exception..

◆ are_equal() [3/4]

template<typename expected_t , typename actual_t >
static void xtd::tunit::collection_assume::are_equal ( const expected_t &  expected,
const actual_t &  actual,
const xtd::diagnostics::stack_frame stack_frame 
)
inlinestatic

Assumes that all collection items are equal.

Parameters
valueThe object to verify
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_assume::are_equal({1, 2, 3, 4}, a, csf_); // test ok.
xtd::tunit::collection_assume::are_equal({4, 3, 2, 1}, a, csf_);// test throws an abort_error exception..

◆ are_equal() [4/4]

template<typename expected_t , typename actual_t >
static void xtd::tunit::collection_assume::are_equal ( const expected_t &  expected,
const actual_t &  actual,
const std::string &  message,
const xtd::diagnostics::stack_frame stack_frame 
)
inlinestatic

Assumes that all collection items are equal.

Parameters
valueThe object to verify
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_assume::are_equal({1, 2, 3, 4}, a, "User message...", csf_); // test ok.
xtd::tunit::collection_assume::are_equal({4, 3, 2, 1}, a, "User message...", csf_);// test throws an abort_error exception..

◆ are_equivalent() [1/4]

template<typename expected_t , typename actual_t >
static void xtd::tunit::collection_assume::are_equivalent ( const expected_t &  expected,
const actual_t &  actual 
)
inlinestatic

Assumes that all collection items are equivalent.

Parameters
valueThe object to verify
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_assume::are_equivalent({4, 3, 2, 1}, a); // test ok.
xtd::tunit::collection_assume::are_equivalent({1, 2, 3, 5}, a);// test throws an abort_error exception..
Examples:
collection_assume_are_equivalent.cpp.

◆ are_equivalent() [2/4]

template<typename expected_t , typename actual_t >
static void xtd::tunit::collection_assume::are_equivalent ( const expected_t &  expected,
const actual_t &  actual,
const std::string &  message 
)
inlinestatic

Assumes that all collection items are equivalent.

Parameters
valueThe object to verify
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_assume::are_equivalent({4, 3, 2, 1}, a, "User message..."); // test ok.
xtd::tunit::collection_assume::are_equivalent({1, 2, 3, 5}, a, "User message...");// test throws an abort_error exception..

◆ are_equivalent() [3/4]

template<typename expected_t , typename actual_t >
static void xtd::tunit::collection_assume::are_equivalent ( const expected_t &  expected,
const actual_t &  actual,
const xtd::diagnostics::stack_frame stack_frame 
)
inlinestatic

Assumes that all collection items are equivalent.

Parameters
valueThe object to verify
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_assume::are_equivalent({1, 2, 3, 5}, a, csf_);// test throws an abort_error exception..

◆ are_equivalent() [4/4]

template<typename expected_t , typename actual_t >
static void xtd::tunit::collection_assume::are_equivalent ( const expected_t &  expected,
const actual_t &  actual,
const std::string &  message,
const xtd::diagnostics::stack_frame stack_frame 
)
inlinestatic

Assumes that all collection items are equivalent.

Parameters
valueThe object to verify
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_assume::are_equivalent({4, 3, 2, 1}, a, "User message...", csf_); // test ok.
xtd::tunit::collection_assume::are_equivalent({1, 2, 3, 5}, a, "User message...", csf_);// test throws an abort_error exception..

◆ are_not_equal() [1/4]

template<typename expected_t , typename actual_t >
static void xtd::tunit::collection_assume::are_not_equal ( const expected_t &  expected,
const actual_t &  actual 
)
inlinestatic

Assumes that all collection items are not equal.

Parameters
valueThe object to verify
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_assume::are_not_equal({4, 3, 2, 1}, a); // test ok.
xtd::tunit::collection_assume::are_not_equal({1, 2, 3, 4}, a);// test throws an abort_error exception..
Examples:
collection_assume_are_not_equal.cpp.

◆ are_not_equal() [2/4]

template<typename expected_t , typename actual_t >
static void xtd::tunit::collection_assume::are_not_equal ( const expected_t &  expected,
const actual_t &  actual,
const std::string &  message 
)
inlinestatic

Assumes that all collection items are not equal.

Parameters
valueThe object to verify
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_assume::are_not_equal({4, 3, 2, 1}, a, "User message..."); // test ok.
xtd::tunit::collection_assume::are_not_equal({1, 2, 3, 4}, a, "User message...");// test throws an abort_error exception..

◆ are_not_equal() [3/4]

template<typename expected_t , typename actual_t >
static void xtd::tunit::collection_assume::are_not_equal ( const expected_t &  expected,
const actual_t &  actual,
const xtd::diagnostics::stack_frame stack_frame 
)
inlinestatic

Assumes that all collection items are not equal.

Parameters
valueThe object to verify
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_assume::are_not_equal({4, 3, 2, 1}, a, csf_); // test ok.
xtd::tunit::collection_assume::are_not_equal({1, 2, 3, 4}, a, csf_);// test throws an abort_error exception..

◆ are_not_equal() [4/4]

template<typename expected_t , typename actual_t >
static void xtd::tunit::collection_assume::are_not_equal ( const expected_t &  expected,
const actual_t &  actual,
const std::string &  message,
const xtd::diagnostics::stack_frame stack_frame 
)
inlinestatic

Assumes that all collection items arenot equal.

Parameters
valueThe object to verify
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_assume::are_not_equal({4, 3, 2, 1}, a, "User message...", csf_); // test ok.
xtd::tunit::collection_assume::are_not_equal({1, 2, 3, 4}, a, "User message...", csf_);// test throws an abort_error exception..

◆ are_not_equivalent() [1/4]

template<typename expected_t , typename actual_t >
static void xtd::tunit::collection_assume::are_not_equivalent ( const expected_t &  expected,
const actual_t &  actual 
)
inlinestatic

Assumes that all collection items are not equivalent.

Parameters
valueThe object to verify
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_assume::are_not_equivalent({4, 3, 2, 1}, a);// test throws an abort_error exception..
Examples:
collection_assume_are_not_equivalent.cpp.

◆ are_not_equivalent() [2/4]

template<typename expected_t , typename actual_t >
static void xtd::tunit::collection_assume::are_not_equivalent ( const expected_t &  expected,
const actual_t &  actual,
const std::string &  message 
)
inlinestatic

Assumes that all collection items are not equivalent.

Parameters
valueThe object to verify
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_assume::are_not_equivalent({1, 2, 3, 5}, a, "User message..."); // test ok.
xtd::tunit::collection_assume::are_not_equivalent({4, 3, 2, 1}, a, "User message...");// test throws an abort_error exception..

◆ are_not_equivalent() [3/4]

template<typename expected_t , typename actual_t >
static void xtd::tunit::collection_assume::are_not_equivalent ( const expected_t &  expected,
const actual_t &  actual,
const xtd::diagnostics::stack_frame stack_frame 
)
inlinestatic

Assumes that all collection items are not equivalent.

Parameters
valueThe object to verify
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_assume::are_not_equivalent({4, 3, 2, 1}, a, csf_);// test throws an abort_error exception..

◆ are_not_equivalent() [4/4]

template<typename expected_t , typename actual_t >
static void xtd::tunit::collection_assume::are_not_equivalent ( const expected_t &  expected,
const actual_t &  actual,
const std::string &  message,
const xtd::diagnostics::stack_frame stack_frame 
)
inlinestatic

Assumes that all collection items are not equivalent.

Parameters
valueThe object to verify
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_assume::are_not_equivalent({1, 2, 3, 5}, a, "User message...", csf_); // test ok.
xtd::tunit::collection_assume::are_not_equivalent({4, 3, 2, 1}, a, "User message...", csf_);// test throws an abort_error exception..

◆ contains() [1/4]

template<typename expected_t , typename actual_t >
static void xtd::tunit::collection_assume::contains ( const expected_t &  expected,
const actual_t &  actual 
)
inlinestatic

Assumes that ollection contains all items.

Parameters
valueThe object to verify
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_assume::contains({1, 2, 6}, a);// test throws an abort_error exception..
Examples:
collection_assume_contains.cpp.

◆ contains() [2/4]

template<typename expected_t , typename actual_t >
static void xtd::tunit::collection_assume::contains ( const expected_t &  expected,
const actual_t &  actual,
const std::string &  message 
)
inlinestatic

Assumes that collection contains all items.

Parameters
valueThe object to verify
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_assume::contains({1, 2}, a, "User message..."); // test ok.
xtd::tunit::collection_assume::contains({1, 2, 6}, a, "User message...");// test throws an abort_error exception..

◆ contains() [3/4]

template<typename expected_t , typename actual_t >
static void xtd::tunit::collection_assume::contains ( const expected_t &  expected,
const actual_t &  actual,
const xtd::diagnostics::stack_frame stack_frame 
)
inlinestatic

Assumes that collection contains all items.

Parameters
valueThe object to verify
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_assume::contains({1, 2, 6}, a, csf_);// test throws an abort_error exception..

◆ contains() [4/4]

template<typename expected_t , typename actual_t >
static void xtd::tunit::collection_assume::contains ( const expected_t &  expected,
const actual_t &  actual,
const std::string &  message,
const xtd::diagnostics::stack_frame stack_frame 
)
inlinestatic

Assumes that collection contains all items.

Parameters
valueThe object to verify
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_assume::contains({1, 2}, a, "User message...", csf_); // test ok.
xtd::tunit::collection_assume::contains({1, 2, 6}, a, "User message...", csf_);// test throws an abort_error exception..

◆ does_not_contain() [1/4]

template<typename expected_t , typename actual_t >
static void xtd::tunit::collection_assume::does_not_contain ( const expected_t &  expected,
const actual_t &  actual 
)
inlinestatic

Assumes that collection contains all items.

Parameters
valueThe object to verify
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_assume::does_not_contain({1, 2}, a);// test throws an abort_error exception..
Examples:
collection_assume_does_not_contain.cpp.

◆ does_not_contain() [2/4]

template<typename expected_t , typename actual_t >
static void xtd::tunit::collection_assume::does_not_contain ( const expected_t &  expected,
const actual_t &  actual,
const std::string &  message 
)
inlinestatic

Assumes that collection contains all items.

Parameters
valueThe object to verify
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_assume::does_not_contain({1, 2, 6}, a, "User message..."); // test ok.
xtd::tunit::collection_assume::does_not_contain({1, 2}, a, "User message...");// test throws an abort_error exception..

◆ does_not_contain() [3/4]

template<typename expected_t , typename actual_t >
static void xtd::tunit::collection_assume::does_not_contain ( const expected_t &  expected,
const actual_t &  actual,
const xtd::diagnostics::stack_frame stack_frame 
)
inlinestatic

Assumes that collection contains all items.

Parameters
valueThe object to verify
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_assume::does_not_contain({1, 2}, a, csf_);// test throws an abort_error exception..

◆ does_not_contain() [4/4]

template<typename expected_t , typename actual_t >
static void xtd::tunit::collection_assume::does_not_contain ( const expected_t &  expected,
const actual_t &  actual,
const std::string &  message,
const xtd::diagnostics::stack_frame stack_frame 
)
inlinestatic

Assumes that collection contains all items.

Parameters
valueThe object to verify
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_assume::does_not_contain({1, 2, 6}, a, "User message...", csf_); // test ok.
xtd::tunit::collection_assume::does_not_contain({1, 2}, a, "User message...", csf_);// test throws an abort_error exception..

◆ is_empty() [1/4]

template<typename value_t >
static void xtd::tunit::collection_assume::is_empty ( const value_t &  value)
inlinestatic

Assumes that collection contains an item.

Parameters
valueThe value to check is empty.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> v1;
std::vector<int> v2 = {0, 1, 2, 3};
xtd::tunit::collection_assume:is_empty(v2);// test throws an abort_error exception.
Examples:
collection_assume_is_empty.cpp.

◆ is_empty() [2/4]

template<typename value_t >
static void xtd::tunit::collection_assume::is_empty ( const value_t &  value,
const xtd::diagnostics::stack_frame stack_frame 
)
inlinestatic

Assumes that collection contains an item.

Parameters
valueThe value to check is empty.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> v1;
std::vector<int> v2 = {0, 1, 2, 3};
xtd::tunit::collection_assume:is_empty(v2, csf_);// test throws an abort_error exception.

◆ is_empty() [3/4]

template<typename value_t >
static void xtd::tunit::collection_assume::is_empty ( const value_t &  value,
const std::string &  message 
)
inlinestatic

Assumes that collection contains an item.

Parameters
valueThe value to check is empty.
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> v1;
std::vector<int> v2 = {0, 1, 2, 3};
xtd::tunit::collection_assume:is_empty(v1, "User message..."); // test ok.
xtd::tunit::collection_assume:is_empty(v2, "User message...");// test throws an abort_error exception.

◆ is_empty() [4/4]

template<typename value_t >
static void xtd::tunit::collection_assume::is_empty ( const value_t &  value,
const std::string &  message,
const xtd::diagnostics::stack_frame stack_frame 
)
inlinestatic

Assumes that collection contains an item.

Parameters
valueThe value to check is empty.
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> v1;
std::vector<int> v2 = {0, 1, 2, 3};
xtd::tunit::collection_assume:is_empty(v1, "User message...", csf_); // test ok.
xtd::tunit::collection_assume:is_empty(v2, "User message...", csf_);// test throws an abort_error exception.

◆ is_not_empty() [1/4]

template<typename value_t >
static void xtd::tunit::collection_assume::is_not_empty ( const value_t &  value)
inlinestatic

Assumes that collection does not contain any item.

Parameters
valueThe value to check is empty.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> v1 = {0, 1, 2, 3};
std::vector<int> v2;
xtd::tunit::collection_assume:is_not_empty(v2);// test throws an abort_error exception.
Examples:
collection_assume_is_not_empty.cpp.

◆ is_not_empty() [2/4]

template<typename value_t >
static void xtd::tunit::collection_assume::is_not_empty ( const value_t &  value,
const xtd::diagnostics::stack_frame stack_frame 
)
inlinestatic

Assumes that collection or traits does not contain any item.

Parameters
valueThe value to check is empty.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> v1 = {0, 1, 2, 3};
std::vector<int> v2;
xtd::tunit::collection_assume:is_not_empty(v2, csf_);// test throws an abort_error exception.

◆ is_not_empty() [3/4]

template<typename value_t >
static void xtd::tunit::collection_assume::is_not_empty ( const value_t &  value,
const std::string &  message 
)
inlinestatic

Assumes that collection or traits does not contain any item.

Parameters
valueThe value to check is empty.
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> v1 = {0, 1, 2, 3};
std::vector<int> v2;
xtd::tunit::collection_assume:is_not_empty(v1, "User message..."); // test ok.
xtd::tunit::collection_assume:is_not_empty(v2, "User message...");// test throws an abort_error exception.

◆ is_not_empty() [4/4]

template<typename value_t >
static void xtd::tunit::collection_assume::is_not_empty ( const value_t &  value,
const std::string &  message,
const xtd::diagnostics::stack_frame stack_frame 
)
inlinestatic

Assumes that collection or traits does not contain any item.

Parameters
valueThe value to check is empty.
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> v1 = {0, 1, 2, 3};
std::vector<int> v2;
xtd::tunit::collection_assume:is_not_empty(v1, "User message...", csf_); // test ok.
xtd::tunit::collection_assume:is_not_empty(v2, "User message...", csf_);// test throws an abort_error exception.

◆ is_ordered() [1/4]

template<typename value_t >
static void xtd::tunit::collection_assume::is_ordered ( const value_t &  value)
inlinestatic

Assumes that collection is ordered.

Parameters
valueThe value to check is empty.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> v1 = {1, 2, 3, 4};
std::vector<int> v2 = {1, 2, 4, 3};
xtd::tunit::collection_assume:is_ordered(v2);// test throws an abort_error exception.
Examples:
collection_assume_is_ordered.cpp.

◆ is_ordered() [2/4]

template<typename value_t >
static void xtd::tunit::collection_assume::is_ordered ( const value_t &  value,
const xtd::diagnostics::stack_frame stack_frame 
)
inlinestatic

Assumes that collection is ordered.

Parameters
valueThe value to check is empty.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> v1 = {1, 2, 3, 4};
std::vector<int> v2 = {1, 2, 4, 3};
xtd::tunit::collection_assume:is_ordered(v2, csf_);// test throws an abort_error exception.

◆ is_ordered() [3/4]

template<typename value_t >
static void xtd::tunit::collection_assume::is_ordered ( const value_t &  value,
const std::string &  message 
)
inlinestatic

Assumes that collection is ordered.

Parameters
valueThe value to check is empty.
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> v1 = {1, 2, 3, 4};
std::vector<int> v2 = {1, 2, 4, 3};
xtd::tunit::collection_assume:is_ordered(v1, "User message..."); // test ok.
xtd::tunit::collection_assume:is_ordered(v2, "User message...");// test throws an abort_error exception.

◆ is_ordered() [4/4]

template<typename value_t >
static void xtd::tunit::collection_assume::is_ordered ( const value_t &  value,
const std::string &  message,
const xtd::diagnostics::stack_frame stack_frame 
)
inlinestatic

Assumes that collection is ordered.

Parameters
valueThe value to check is empty.
messageA user message to display if the assertion fails. This message can be seen in the unit test results.
stack_frameContains information about current file and current line.
Exceptions
xtd::tunit::abort_errorIf bad assertion.
Examples
std::vector<int> v1 = {1, 2, 3, 4};
std::vector<int> v2 = {1, 2, 4, 3};
xtd::tunit::collection_assume:is_ordered(v1, "User message...", csf_); // test ok.
xtd::tunit::collection_assume:is_ordered(v2, "User message...", csf_);// test throws an abort_error exception.

The documentation for this class was generated from the following file: