Sequoia
Loading...
Searching...
No Matches
MoveOnlyStateTransitionDiagnostics.hpp
Go to the documentation of this file.
1
2// Copyright Oliver J. Rosten 2021. //
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 move_only_false_positive_test::move_only_false_positive_test;
20
21 [[nodiscard]]
22 std::filesystem::path source_file() const;
23
24 void run_tests();
25 private:
26 void test_orderable();
27 void test_equality_comparable();
28 };
29
31 {
32 public:
33 using move_only_false_negative_test::move_only_false_negative_test;
34
35 [[nodiscard]]
36 std::filesystem::path source_file() const;
37
38 void run_tests();
39 private:
40 void test_orderable();
41 void test_equality_comparable();
42 };
43}
Extension for testing classes exhibiting move-only semantics.
class template from which all concrete tests should derive.
Definition: FreeTestCore.hpp:144
Definition: MoveOnlyStateTransitionDiagnostics.hpp:31
Definition: MoveOnlyStateTransitionDiagnostics.hpp:17