Sequoia
Loading...
Searching...
No Matches
OutputFreeTest.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{
16 class output_free_test final : public free_test
17 {
18 public:
19 using free_test::free_test;
20
21 [[nodiscard]]
22 std::filesystem::path source_file() const;
23
24 void run_tests();
25 private:
26 void test_emphasise();
27
28 void test_display_character();
29
30 void test_tidy_name();
31
32 void test_relative_reporting_path();
33
34 void test_absolute_reporting_path();
35 };
36}
Core functionality for the testing framework.
class template from which all concrete tests should derive.
Definition: FreeTestCore.hpp:144
Definition: OutputFreeTest.hpp:17