mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-16 14:57:13 +02:00
tests for bool in ToString/StringTo
This commit is contained in:
@ -16,6 +16,17 @@ namespace sls {
|
||||
|
||||
using namespace sls::time;
|
||||
|
||||
TEST_CASE("Convert bool to string", "[support]") {
|
||||
REQUIRE(ToString(true) == "1");
|
||||
REQUIRE(ToString(false) == "0");
|
||||
}
|
||||
|
||||
TEST_CASE("Convert string to bool", "[support]") {
|
||||
REQUIRE(StringTo<bool>("1") == true);
|
||||
REQUIRE(StringTo<bool>("0") == false);
|
||||
}
|
||||
|
||||
|
||||
TEST_CASE("Integer conversions", "[support]") {
|
||||
REQUIRE(ToString(0) == "0");
|
||||
REQUIRE(ToString(1) == "1");
|
||||
|
Reference in New Issue
Block a user