Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
26b30a27
Commit
26b30a27
authored
Nov 22, 2018
by
Tobias Mayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test copying of config_option
parent
1babec50
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
0 deletions
+21
-0
libcaf_core/test/config_option.cpp
libcaf_core/test/config_option.cpp
+21
-0
No files found.
libcaf_core/test/config_option.cpp
View file @
26b30a27
...
@@ -87,8 +87,29 @@ void check_integer_options() {
...
@@ -87,8 +87,29 @@ void check_integer_options() {
check_integer_options
<
T
>
(
tk
);
check_integer_options
<
T
>
(
tk
);
}
}
void
compare
(
const
config_option
&
lhs
,
const
config_option
&
rhs
)
{
CAF_CHECK_EQUAL
(
lhs
.
category
(),
rhs
.
category
());
CAF_CHECK_EQUAL
(
lhs
.
long_name
(),
rhs
.
long_name
());
CAF_CHECK_EQUAL
(
lhs
.
short_names
(),
rhs
.
short_names
());
CAF_CHECK_EQUAL
(
lhs
.
description
(),
rhs
.
description
());
CAF_CHECK_EQUAL
(
lhs
.
full_name
(),
rhs
.
full_name
());
}
}
// namespace <anonymous>
}
// namespace <anonymous>
CAF_TEST
(
copy
constructor
)
{
auto
one
=
make_config_option
<
int
>
(
"cat1"
,
"one"
,
"option 1"
);
auto
two
=
one
;
compare
(
one
,
two
);
}
CAF_TEST
(
copy
assignment
)
{
auto
one
=
make_config_option
<
int
>
(
"cat1"
,
"one"
,
"option 1"
);
auto
two
=
make_config_option
<
int
>
(
"cat2"
,
"two"
,
"option 2"
);
two
=
one
;
compare
(
one
,
two
);
}
CAF_TEST
(
type_bool
)
{
CAF_TEST
(
type_bool
)
{
CAF_CHECK_EQUAL
(
read
<
bool
>
(
"true"
),
true
);
CAF_CHECK_EQUAL
(
read
<
bool
>
(
"true"
),
true
);
CAF_CHECK_EQUAL
(
read
<
bool
>
(
"false"
),
false
);
CAF_CHECK_EQUAL
(
read
<
bool
>
(
"false"
),
false
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment