xtd 0.2.0
Loading...
Searching...
No Matches
xtd::tunit::collection_valid Class Referencefinal
Inheritance diagram for xtd::tunit::collection_valid:
xtd::tunit::base_assert

Definition

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

Namespace
xtd::tunit
Library
xtd.tunit
Remarks
Validations are the same as assertions with the difference, no exception is thrown, but an error is generated.
If a validation fails, he test can be continued to the end or to an assertion is generated.
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) {
void test_method_(test_case1) {
collection_valid::is_empty(vector<int> {});
}
void test_method_(test_case2) {
collection_valid::is_empty(vector {1, 2, 3});
}
void test_method_(test_case3) {
collection_valid::is_ordered(vector {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)
// FAILED test.test_case2 (0 ms total)
// Expected: <empty>
// But was: < 1, 2, 3 >
// Stack Trace: in |---OMITTED---|/collection_valid.cpp:14
// FAILED test.test_case3 (0 ms total)
// Expected: < 1, 2, 3 >
// But was: < 1, 3, 2 >
// Stack Trace: in |---OMITTED---|/collection_valid.cpp:18
//
// Test results:
// SUCCEED 1 test.
// FAILED 2 tests.
// End 3 tests from 1 test case ran. (0 ms total)
The console_unit_test class is console unit test interface.
Definition console_unit_test.h:23
int32 run()
Runs all tests in this unit_test object and prints the result.
#define test_method_(method_name)
Add test method to class test.
Definition test_method_attribute.h:88
The tunit namespace contains a unit test library.
Definition abort_error.h:10

Public Static Methods

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

Member Function Documentation

◆ all_items_are_instances_of() [1/4]

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

Validates 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.
Examples
std::vector<std::ios_base*> a = {&std::cout, &std::cerr, &std::cin};
xtd::tunit::collection_valid::all_items_are_instances_of<std::ios_base*>(a); // test ok.
xtd::tunit::collection_valid::all_items_are_instances_of<std::basic_ostream<char>*>(a); // test fails.
@ a
The A key.

◆ all_items_are_instances_of() [2/4]

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

Validates 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.
Examples
std::vector<std::ios_base*> a = {&std::cout, &std::cerr, &std::cin};
xtd::tunit::collection_valid::all_items_are_instances_of<std::ios_base*>(a, "User message..."); // test ok.
xtd::tunit::collection_valid::all_items_are_instances_of<std::basic_ostream<char>*>(a, "User message..."); // test fails.

◆ all_items_are_instances_of() [3/4]

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

Validates 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.
Examples
std::vector<std::ios_base*> a = {&std::cout, &std::cerr, &std::cin};
xtd::tunit::collection_valid::all_items_are_instances_of<std::ios_base*>(a, "User message...", csf_); // test ok.
xtd::tunit::collection_valid::all_items_are_instances_of<std::basic_ostream<char>*>(a, "User message...", csf_); // test fails.
#define csf_
Provides information about the current stack frame.
Definition current_stack_frame.h:30

◆ all_items_are_instances_of() [4/4]

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

Validates 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.
Examples
std::vector<std::ios_base*> a = {&std::cout, &std::cerr, &std::cin};
xtd::tunit::collection_valid::all_items_are_instances_of<std::ios_base*>(a, csf_); // test ok.
xtd::tunit::collection_valid::all_items_are_instances_of<std::basic_ostream<char>*>(a, csf_); // test fails.

◆ all_items_are_not_null() [1/4]

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

Validates 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.
Examples
int i1 = 0, i2 = 3;
std::vector<int*> a1 = {&i1, &i2};
std::vector<int*> a2 = {&i1, &i2, nullptr};
static void all_items_are_not_null(const collection_t &collection)
Validates that all collection items are not null.
Definition collection_valid.h:117

◆ all_items_are_not_null() [2/4]

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

Validates 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.
Examples
int i1 = 0, i2 = 3;
std::vector<int*> a1 = {&i1, &i2};
xtd::tunit::collection_valid::all_items_are_not_null(a1, "User message..."); // test ok.
std::vector<int*> a2 = {&i1, &i2, nullptr};
xtd::tunit::collection_valid::all_items_are_not_null(a2, "User message..."); // test fails.

◆ all_items_are_not_null() [3/4]

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

Validates 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.
Examples
int i1 = 0, i2 = 3;
std::vector<int*> a1 = {&i1, &i2};
xtd::tunit::collection_valid::all_items_are_not_null(a1, "User message...", csf_); // test ok.
std::vector<int*> a2 = {&i1, &i2, nullptr};
xtd::tunit::collection_valid::all_items_are_not_null(a2, "User message...", csf_); // test fails.

◆ all_items_are_not_null() [4/4]

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

Validates 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.
Examples
int i1 = 0, i2 = 3;
std::vector<int*> a1 = {&i1, &i2};
std::vector<int*> a2 = {&i1, &i2, nullptr};

◆ all_items_are_unique() [1/4]

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

Validates 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.
Examples
std::vector<int> a1 = {1, 2, 3, 4};
std::vector<int> a2 = {1, 2, 3, 4, 1};
static void all_items_are_unique(const collection_t &collection)
Validates that all collection items are unique.
Definition collection_valid.h:196

◆ all_items_are_unique() [2/4]

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

Validates 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.
Examples
std::vector<int> a1 = {1, 2, 3, 4};
xtd::tunit::collection_valid::all_items_are_unique(a1, "User message..."); // test ok.
std::vector<int> a2 = {1, 2, 3, 4, 1};
xtd::tunit::collection_valid::all_items_are_unique(a2, "User message..."); // test fails.

◆ all_items_are_unique() [3/4]

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

Validates 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.
Examples
std::vector<int> a1 = {1, 2, 3, 4};
xtd::tunit::collection_valid::all_items_are_unique(a1, "User message...", csf_); // test ok.
std::vector<int> a2 = {1, 2, 3, 4, 1};
xtd::tunit::collection_valid::all_items_are_unique(a2, "User message...", csf_); // test fails.

◆ all_items_are_unique() [4/4]

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

Validates 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.
Examples
std::vector<int> a1 = {1, 2, 3, 4};
std::vector<int> a2 = {1, 2, 3, 4, 1};

◆ are_equal() [1/4]

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

Validates 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.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_valid::are_equal({1, 2, 3, 4}, a); // test ok.
xtd::tunit::collection_valid::are_equal({4, 3, 2, 1}, a); // test fails.
static void are_equal(const expected_t &expected, const actual_t &actual)
Validates that all collection items are equal.
Definition collection_valid.h:271

◆ are_equal() [2/4]

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

Validates 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.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_valid::are_equal({1, 2, 3, 4}, a, "User message..."); // test ok.
xtd::tunit::collection_valid::are_equal({4, 3, 2, 1}, a, "User message..."); // test fails.

◆ are_equal() [3/4]

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

Validates 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.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_valid::are_equal({1, 2, 3, 4}, a, "User message...", csf_); // test ok.
xtd::tunit::collection_valid::are_equal({4, 3, 2, 1}, a, "User message...", csf_); // test fails.

◆ are_equal() [4/4]

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

Validates 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.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_valid::are_equal({1, 2, 3, 4}, a, csf_); // test ok.
xtd::tunit::collection_valid::are_equal({4, 3, 2, 1}, a, csf_); // test fails.

◆ are_equivalent() [1/4]

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

Validates 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.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_valid::are_equivalent({1, 2, 3, 5}, a); // test fails.
static void are_equivalent(const expected_t &expected, const actual_t &actual)
Validates that all collection items are equivalent.
Definition collection_valid.h:371

◆ are_equivalent() [2/4]

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

Validates 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.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_valid::are_equivalent({4, 3, 2, 1}, a, "User message..."); // test ok.
xtd::tunit::collection_valid::are_equivalent({1, 2, 3, 5}, a, "User message..."); // test fails.

◆ are_equivalent() [3/4]

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

Validates 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.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_valid::are_equivalent({4, 3, 2, 1}, a, "User message...", csf_); // test ok.
xtd::tunit::collection_valid::are_equivalent({1, 2, 3, 5}, a, "User message...", csf_); // test fails.

◆ are_equivalent() [4/4]

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

Validates 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.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_valid::are_equivalent({1, 2, 3, 5}, a, csf_); // test fails.

◆ are_not_equal() [1/4]

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

Validates 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.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_valid::are_not_equal({1, 2, 3, 4}, a); // test fails.
static void are_not_equal(const expected_t &expected, const actual_t &actual)
Validates that all collection items are not equal.
Definition collection_valid.h:471

◆ are_not_equal() [2/4]

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

Validates 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.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_valid::are_not_equal({4, 3, 2, 1}, a, "User message..."); // test ok.
xtd::tunit::collection_valid::are_not_equal({1, 2, 3, 4}, a, "User message..."); // test fails.

◆ are_not_equal() [3/4]

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

Validates 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.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_valid::are_not_equal({4, 3, 2, 1}, a, "User message...", csf_); // test ok.
xtd::tunit::collection_valid::are_not_equal({1, 2, 3, 4}, a, "User message...", csf_); // test fails.

◆ are_not_equal() [4/4]

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

Validates 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.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_valid::are_not_equal({1, 2, 3, 4}, a, csf_); // test fails.

◆ are_not_equivalent() [1/4]

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

Validates 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.
Examples
std::vector<int> a = {1, 2, 3, 4};
static void are_not_equivalent(const expected_t &expected, const actual_t &actual)
Validates that all collection items are not equivalent.
Definition collection_valid.h:571

◆ are_not_equivalent() [2/4]

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

Validates 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.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_valid::are_not_equivalent({1, 2, 3, 5}, a, "User message..."); // test ok.
xtd::tunit::collection_valid::are_not_equivalent({4, 3, 2, 1}, a, "User message..."); // test fails.

◆ are_not_equivalent() [3/4]

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

Validates 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.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_valid::are_not_equivalent({1, 2, 3, 5}, a, "User message...", csf_); // test ok.
xtd::tunit::collection_valid::are_not_equivalent({4, 3, 2, 1}, a, "User message...", csf_); // test fails.

◆ are_not_equivalent() [4/4]

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

Validates 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.
Examples
std::vector<int> a = {1, 2, 3, 4};

◆ contains() [1/4]

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

Validates 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.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_valid::contains({1, 2, 6}, a); // test fails.
static void contains(const expected_t &expected, const actual_t &actual)
Validates that collection contains all items.
Definition collection_valid.h:671

◆ contains() [2/4]

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

Validates 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.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_valid::contains({1, 2}, a, "User message..."); // test ok.
xtd::tunit::collection_valid::contains({1, 2, 6}, a, "User message..."); // test fails.

◆ contains() [3/4]

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

Validates 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.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_valid::contains({1, 2}, a, "User message...", csf_); // test ok.
xtd::tunit::collection_valid::contains({1, 2, 6}, a, "User message...", csf_); // test fails.

◆ contains() [4/4]

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

Validates 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.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_valid::contains({1, 2, 6}, a, csf_); // test fails.

◆ does_not_contain() [1/4]

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

Validates 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.
Examples
std::vector<int> a = {1, 2, 3, 4};
static void does_not_contain(const expected_t &expected, const actual_t &actual)
Validates that collection contains all items.
Definition collection_valid.h:771

◆ does_not_contain() [2/4]

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

Validates 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.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_valid::does_not_contain({1, 2, 6}, a, "User message..."); // test ok.
xtd::tunit::collection_valid::does_not_contain({1, 2}, a, "User message..."); // test fails.

◆ does_not_contain() [3/4]

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

Validates 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.
Examples
std::vector<int> a = {1, 2, 3, 4};
xtd::tunit::collection_valid::does_not_contain({1, 2, 6}, a, "User message...", csf_); // test ok.
xtd::tunit::collection_valid::does_not_contain({1, 2}, a, "User message...", csf_); // test fails.

◆ does_not_contain() [4/4]

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

Validates 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.
Examples
std::vector<int> a = {1, 2, 3, 4};

◆ is_empty() [1/4]

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

Validates that collection contains an item.

Parameters
valueThe value to check is empty.
Examples
std::vector<int> v1;
std::vector<int> v2 = {0, 1, 2, 3};
The collection_valid class contains a collection of static methods that implement the most collection...
Definition collection_valid.h:23
static void is_empty(const value_t &value)
Validates that collection contains an item.
Definition collection_valid.h:870

◆ is_empty() [2/4]

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

Validates 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.
Examples
std::vector<int> v1;
std::vector<int> v2 = {0, 1, 2, 3};
xtd::tunit::collection_valid:is_empty(v1, "User message..."); // test ok.
xtd::tunit::collection_valid:is_empty(v2, "User message..."); // test fails

◆ is_empty() [3/4]

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

Validates 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.
Examples
std::vector<int> v1;
std::vector<int> v2 = {0, 1, 2, 3};
xtd::tunit::collection_valid:is_empty(v1, "User message...", csf_); // test ok.
xtd::tunit::collection_valid:is_empty(v2, "User message...", csf_); // test fails

◆ is_empty() [4/4]

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

Validates that collection contains an item.

Parameters
valueThe value to check is empty.
stack_frameContains information about current file and current line.
Examples
std::vector<int> v1;
std::vector<int> v2 = {0, 1, 2, 3};

◆ is_not_empty() [1/4]

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

Validates that collection does not contain any item.

Parameters
valueThe value to check is empty.
Examples
std::vector<int> v1 = {0, 1, 2, 3};
std::vector<int> v2;
static void is_not_empty(const value_t &value)
Validates that collection does not contain any item.
Definition collection_valid.h:942

◆ is_not_empty() [2/4]

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

Validates 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.
Examples
std::vector<int> v1 = {0, 1, 2, 3};
std::vector<int> v2;
xtd::tunit::collection_valid:is_not_empty(v1, "User message..."); // test ok.
xtd::tunit::collection_valid:is_not_empty(v2, "User message..."); // test fails

◆ is_not_empty() [3/4]

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

Validates 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.
Examples
std::vector<int> v1 = {0, 1, 2, 3};
std::vector<int> v2;
xtd::tunit::collection_valid:is_not_empty(v1, "User message...", csf_); // test ok.
xtd::tunit::collection_valid:is_not_empty(v2, "User message...", csf_); // test fails

◆ is_not_empty() [4/4]

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

Validates 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.
Examples
std::vector<int> v1 = {0, 1, 2, 3};
std::vector<int> v2;

◆ is_ordered() [1/4]

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

Validates that collection is ordered.

Parameters
valueThe value to check is empty.
Examples
std::vector<int> v1 = {1, 2, 3, 4};
std::vector<int> v2 = {1, 2, 4, 3};
static void is_ordered(const value_t &value)
Validates that collection is ordered.
Definition collection_valid.h:1014

◆ is_ordered() [2/4]

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

Validates 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.
Examples
std::vector<int> v1 = {1, 2, 3, 4};
std::vector<int> v2 = {1, 2, 4, 3};
xtd::tunit::collection_valid:is_ordered(v1, "User message..."); // test ok.
xtd::tunit::collection_valid:is_ordered(v2, "User message..."); // test fails

◆ is_ordered() [3/4]

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

Validates 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.
Examples
std::vector<int> v1 = {1, 2, 3, 4};
std::vector<int> v2 = {1, 2, 4, 3};
xtd::tunit::collection_valid:is_ordered(v1, "User message...", csf_); // test ok.
xtd::tunit::collection_valid:is_ordered(v2, "User message...", csf_); // test fails

◆ is_ordered() [4/4]

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

Validates that collection is ordered.

Parameters
valueThe value to check is empty.
stack_frameContains information about current file and current line.
Examples
std::vector<int> v1 = {1, 2, 3, 4};
std::vector<int> v2 = {1, 2, 4, 3};

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