-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.codebanner.json
More file actions
70 lines (70 loc) · 2.78 KB
/
.codebanner.json
File metadata and controls
70 lines (70 loc) · 2.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"folders": [
"scrutinytest",
"tests"
],
"include_patterns": [
"*.cpp",
"*.hpp"
],
"exclude_patterns": [],
"license": "MIT - See LICENSE file",
"project": "Scrutiny Debugger",
"repo": "github.com/scrutinydebugger/scrutiny-test-framework",
"copyright_owner": "Scrutiny Debugger",
"copyright_start_date": null,
"copyright_end_date": null,
"files": {
"scrutinytest/inc/scrutinytest/testresult.hpp": {
"docstring": "The class that gets injected in the test body to report the status of the test case"
},
"scrutinytest/inc/scrutinytest/testcase.hpp": {
"docstring": "A base class for every test case"
},
"scrutinytest/inc/scrutinytest/types.hpp": {
"docstring": "Some proejct wide types"
},
"scrutinytest/inc/scrutinytest/testcase_handler.hpp": {
"docstring": "A wrapper that initialize a testcase. Only goal is to leave the TestCase constructor empty so the user can extend easily"
},
"scrutinytest/inc/scrutinytest/scrutinytest.hpp": {
"docstring": "The main header to include for the scrutinytest framework"
},
"scrutinytest/inc/scrutinytest/testrunner.hpp": {
"docstring": "The class that will iterate all test suites and run the test cases"
},
"scrutinytest/src/scrutinytest.cpp": {
"docstring": "The definition of scrutinytest global functions"
},
"scrutinytest/src/testrunner.cpp": {
"docstring": "The class that will iterate all test suites and run the test cases"
},
"scrutinytest/src/testcase.cpp": {
"docstring": "A base class for every test case"
},
"scrutinytest/src/testresult.cpp": {
"docstring": "The class that gets injected in the test body to report the status of the test case"
},
"tests/src/test_basic.cpp": {
"docstring": "Tries the TEST() macro"
},
"tests/src/main.cpp": {
"docstring": "A main that can run some demo tests on an OS"
},
"tests/src/test_custom_suite.cpp": {
"docstring": "Tries the TEST_F() macro"
},
"scrutinytest/inc/scrutinytest/macros.hpp": {
"docstring": "Project wide macros"
},
"tests/src/test_expect_assert_extensions.cpp": {
"docstring": "Validate custom assetion fucntions in a test suite"
},
"scrutinytest/inc/scrutinytest/config.hpp": {
"docstring": "Project wide configuration, can be set by cmake"
},
"scrutinytest/inc/scrutinytest/streams.hpp": {
"docstring": "A layer to mock ostreams in case we build without support for c++ stdlib"
}
}
}