10 #define BOOST_TEST_MODULE cmdline_interface
11 #include <boost/test/included/unit_test.hpp>
18 const char* argv[] = {
29 #ifdef CORENEURON_ENABLE_GPU
76 constexpr
int argc =
sizeof argv /
sizeof argv[0];
80 corenrn_param_test.
parse(argc,
const_cast<char**
>(argv));
83 BOOST_CHECK(corenrn_param_test.
seed == -1);
85 BOOST_CHECK(corenrn_param_test.
spikebuf == 100);
87 BOOST_CHECK(corenrn_param_test.
threading ==
true);
89 BOOST_CHECK(corenrn_param_test.
dt == 0.02);
91 BOOST_CHECK(corenrn_param_test.
tstop == 0.1);
93 BOOST_CHECK(corenrn_param_test.
prcellgid == 12);
94 #ifdef CORENEURON_ENABLE_GPU
95 BOOST_CHECK(corenrn_param_test.
gpu ==
true);
97 BOOST_CHECK(corenrn_param_test.
gpu ==
false);
99 BOOST_CHECK(corenrn_param_test.
dt_io == 0.2);
101 BOOST_CHECK(corenrn_param_test.
forwardskip == 0.02);
103 BOOST_CHECK(corenrn_param_test.
celsius == 25.12);
105 BOOST_CHECK(corenrn_param_test.
mpi_enable ==
true);
109 BOOST_CHECK(corenrn_param_test.
voltage == -32);
111 BOOST_CHECK(corenrn_param_test.
nwarp == 8);
113 BOOST_CHECK(corenrn_param_test.
multisend ==
true);
115 BOOST_CHECK(corenrn_param_test.
mindelay == 0.1);
117 BOOST_CHECK(corenrn_param_test.
ms_phases == 1);
119 BOOST_CHECK(corenrn_param_test.
ms_subint == 2);
123 BOOST_CHECK(corenrn_param_test.
multisend ==
true);
126 corenrn_param_test.
reset();
133 BOOST_CHECK(corenrn_param_test.
config_to_str(
false,
false).empty());