Revert "tests add to namespace sls (#464)" (#465)

This reverts commit f5745fcf18.
This commit is contained in:
Dhanya Thattil
2022-05-20 15:43:48 +02:00
committed by GitHub
parent f5745fcf18
commit 8656eeec25
44 changed files with 228 additions and 350 deletions

View File

@ -6,10 +6,10 @@
#include "sls/TypeTraits.h"
#include <string>
namespace sls {
using sls::Result;
TEST_CASE("Result looks and behaves like a standard container") {
REQUIRE(is_container<Result<int>>::value == true);
REQUIRE(sls::is_container<Result<int>>::value == true);
}
TEST_CASE("Default construction is possible and gives an empty result") {
@ -195,5 +195,3 @@ TEST_CASE("String conversions") {
REQUIRE(ToString(res4) ==
"[{one: 1}, {one: 1, three: 3, two: 2}, {one: 1}]");
}
} // namespace sls