FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
xeus-cpp/test/main.cpp at main · compiler-research/xeus-cpp · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
compiler-research
/
xeus-cpp
Public
Notifications
You must be signed in to change notification settings
Fork
46
Star
130
Code
Issues
46
Pull requests
17
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
xeus-cpp
/
test
/
main.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
25 lines (19 loc) · 754 Bytes
Breadcrumbs
xeus-cpp
/
test
/
main.cpp
Copy path
File metadata and controls
25 lines (19 loc) · 754 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
/*
**************************************************************************
* Copyright (c) 2023, xeus-cpp contributors
*
* Distributed under the terms of the BSD 3-Clause License.
*
* The full license is in the file LICENSE, distributed with this software.
***************************************************************************
*/
#
define
DOCTEST_CONFIG_IMPLEMENT
#
include
"
doctest/doctest.h
"
int
main
(
int
argc,
char
** argv) {
doctest::Context context;
//
Set options to show more detailed test output
context.
setOption
(
"
success
"
,
true
);
context.
setOption
(
"
report-failures
"
,
true
);
context.
setOption
(
"
force-colors
"
,
true
);
context.
applyCommandLine
(argc, argv);
int
res = context.
run
();
return
res;
}
Back
|
FazBrowse Home
|
New Git URL