Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/gtests/blenlib/BLI_optional_test.cc')
-rw-r--r--tests/gtests/blenlib/BLI_optional_test.cc61
1 files changed, 0 insertions, 61 deletions
diff --git a/tests/gtests/blenlib/BLI_optional_test.cc b/tests/gtests/blenlib/BLI_optional_test.cc
deleted file mode 100644
index 2fc2188563e..00000000000
--- a/tests/gtests/blenlib/BLI_optional_test.cc
+++ /dev/null
@@ -1,61 +0,0 @@
-#include "BLI_optional.hh"
-#include "BLI_strict_flags.h"
-#include "testing/testing.h"
-#include <string>
-
-using namespace blender;
-
-TEST(optional, DefaultConstructor)
-{
- Optional<int> a;
- EXPECT_FALSE(a.has_value());
-}
-
-TEST(optional, ValueConstructor)
-{
- Optional<int> a(5);
- EXPECT_TRUE(a.has_value());
- EXPECT_EQ(a.value(), 5);
-}
-
-TEST(optional, CopyConstructor)
-{
- Optional<std::string> a("Hello");
- Optional<std::string> b = a;
- EXPECT_TRUE(a.has_value());
- EXPECT_TRUE(b.has_value());
- b.value()[0] = 'T';
- EXPECT_EQ(a.value(), "Hello");
- EXPECT_EQ(b.value(), "Tello");
-}
-
-TEST(optional, Reset)
-{
- Optional<int> a(4);
- EXPECT_TRUE(a.has_value());
- a.reset();
- EXPECT_FALSE(a.has_value());
-}
-
-TEST(optional, Extract)
-{
- Optional<int> a(32);
- EXPECT_TRUE(a.has_value());
- EXPECT_EQ(a.extract(), 32);
- EXPECT_FALSE(a.has_value());
-}
-
-TEST(optional, ArrowOperator)
-{
- Optional<std::string> value = std::string("Hello");
- EXPECT_TRUE(value.has_value());
- EXPECT_EQ(value->size(), 5);
-}
-
-TEST(optional, StarOperator)
-{
- Optional<std::string> value = std::string("Hello");
- EXPECT_TRUE(value.has_value());
- std::string &s = *value;
- EXPECT_EQ(s.size(), 5);
-}