Sequoia
Loading...
Searching...
No Matches
ElementaryFreeDiagnostics.hpp
Go to the documentation of this file.
1
2// Copyright Oliver J. Rosten 2019. //
3// Distributed under the GNU GENERAL PUBLIC LICENSE, Version 3.0. //
4// (See accompanying file LICENSE.md or copy at //
5// https://www.gnu.org/licenses/gpl-3.0.en.html) //
7
8#pragma once
9
13
14namespace sequoia::testing
15{
17 {
18 public:
19 using free_false_negative_test::free_false_negative_test;
20
21 [[nodiscard]]
22 std::filesystem::path source_file() const;
23
24 void run_tests();
25 private:
26
27 void built_in_type_tests();
28 void test_equality_checks();
29 void test_simple_equality_checks();
30 void test_equivalence_checks();
31 void test_weak_equivalence_checks();
32 void test_with_best_available_checks();
33 };
34
36 {
37 public:
38 using free_false_positive_test::free_false_positive_test;
39
40 [[nodiscard]]
41 std::filesystem::path source_file() const;
42
43 void run_tests();
44 private:
45
46 void built_in_type_tests();
47 void test_equality_checks();
48 void test_simple_equality_checks();
49 void test_equivalence_checks();
50 void test_weak_equivalence_checks();
51 void test_with_best_available_checks();
52 };
53}
Core functionality for the testing framework.
class template from which all concrete tests should derive.
Definition: FreeTestCore.hpp:144
Definition: ElementaryFreeDiagnostics.hpp:17
Definition: ElementaryFreeDiagnostics.hpp:36