mirror of
https://github.com/TartanLlama/optional.git
synced 2025-06-25 00:51:37 +02:00
Add test for emplace()
This commit is contained in:
@ -11,3 +11,14 @@ TEST_CASE("Emplace", "[emplace]") {
|
|||||||
REQUIRE(i->second.first == 3);
|
REQUIRE(i->second.first == 3);
|
||||||
REQUIRE(i->second.second == 4);
|
REQUIRE(i->second.second == 4);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct A {
|
||||||
|
A() {
|
||||||
|
throw std::exception();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
TEST_CASE("Emplace with exception thrown", "[emplace]") {
|
||||||
|
tl::optional<A> a;
|
||||||
|
REQUIRE_THROWS(a.emplace());
|
||||||
|
}
|
||||||
|
Reference in New Issue
Block a user