Searched refs:TestFixture (Results 1 - 11 of 11) sorted by relevance
/third_party/skia/third_party/externals/angle2/src/tests/compiler_tests/ |
H A D | FloatLex_test.cpp | 70 ASSERT_TRUE(TestFixture::ParsedMatches("1.0", 1.0f)); in TYPED_TEST() 75 ASSERT_TRUE(TestFixture::ParsedMatches("10.0", 10.0f)); in TYPED_TEST() 80 ASSERT_TRUE(TestFixture::ParsedMatches("1.0e1", 10.0f)); in TYPED_TEST() 86 ss << "0." << TestFixture::Zeros(100) << "125e102"; in TYPED_TEST() 87 ASSERT_TRUE(TestFixture::ParsedMatches(ss.str(), 12.5f)); in TYPED_TEST() 93 ss << "9" << TestFixture::Zeros(100) << ".0e-100"; in TYPED_TEST() 94 ASSERT_TRUE(TestFixture::ParsedMatches(ss.str(), 9.0f)); in TYPED_TEST() 100 ss << "0." << TestFixture::Zeros(5000) << "125e5002"; in TYPED_TEST() 101 ASSERT_TRUE(TestFixture::ParsedMatches(ss.str(), 12.5f)); in TYPED_TEST() 107 ss << "9" << TestFixture in TYPED_TEST() [all...] |
/third_party/rust/crates/which-rs/tests/ |
H A D | basic.rs | 12 struct TestFixture { structure names 46 impl TestFixture { impls 56 pub fn new() -> TestFixture { in new() 74 TestFixture { in new() 91 fn _which<T: AsRef<OsStr>>(f: &TestFixture, path: T) -> which::Result<which::CanonicalPath> { in _which() 96 f: &'a TestFixture, in _which_all() 122 let f = TestFixture::new(); in test_which() 129 let f = TestFixture::new(); in test_which() 136 let f = TestFixture::new(); in test_which_re_in_with_matches() 157 let f = TestFixture in test_which_re_in_without_matches() [all...] |
/third_party/skia/third_party/externals/angle2/src/common/ |
H A D | bitset_utils_unittest.cpp | 128 typename TestFixture::BitSet other(kOtherValue); in TYPED_TEST() 129 typename TestFixture::BitSet anded(kSelfMaskedValue & kOtherMaskedValue); in TYPED_TEST() 130 typename TestFixture::BitSet ored(kSelfMaskedValue | kOtherMaskedValue); in TYPED_TEST() 131 typename TestFixture::BitSet xored(kSelfMaskedValue ^ kOtherMaskedValue); in TYPED_TEST() 153 EXPECT_EQ(mBits, typename TestFixture::BitSet(kSelfValue)); in TYPED_TEST() 155 EXPECT_EQ(mBits << kShift, typename TestFixture::BitSet(kSelfShiftedLeft)); in TYPED_TEST() 156 EXPECT_EQ(mBits >> kShift, typename TestFixture::BitSet(kSelfShiftedRight)); in TYPED_TEST() 159 EXPECT_EQ(mBits, typename TestFixture::BitSet(kSelfShiftedLeft)); in TYPED_TEST() 162 mBits = typename TestFixture::BitSet(kSelfValue); in TYPED_TEST() 164 EXPECT_EQ(mBits, typename TestFixture in TYPED_TEST() [all...] |
/third_party/zlib/contrib/dotzlib/DotZLib/ |
H A D | UnitTests.cs | 43 [TestFixture]
80 [TestFixture]
151 [TestFixture]
168 [TestFixture]
243 [TestFixture]
|
/third_party/googletest/googletest/include/gtest/ |
H A D | gtest-typed-test.h | 74 // To visit static members of the fixture, add the TestFixture:: 76 n += TestFixture::shared_; 79 // TestFixture::" prefix. 80 typename TestFixture::List values; 204 typedef CaseName<gtest_TypeParam_> TestFixture; \ 275 typedef SuiteName<gtest_TypeParam_> TestFixture; \
|
/third_party/node/deps/googletest/include/gtest/ |
H A D | gtest-typed-test.h | 74 // To visit static members of the fixture, add the TestFixture:: 76 n += TestFixture::shared_; 79 // TestFixture::" prefix. 80 typename TestFixture::List values; 204 typedef CaseName<gtest_TypeParam_> TestFixture; \ 275 typedef SuiteName<gtest_TypeParam_> TestFixture; \
|
/third_party/mesa3d/src/gtest/include/gtest/ |
H A D | gtest-typed-test.h | 73 // To visit static members of the fixture, add the TestFixture:: 75 n += TestFixture::shared_; 78 // TestFixture::" prefix. 79 typename TestFixture::List values; 202 typedef CaseName<gtest_TypeParam_> TestFixture; \ 277 typedef SuiteName<gtest_TypeParam_> TestFixture; \
|
/third_party/googletest/googletest/test/ |
H A D | gtest-typed-test_test.cc | 99 // the TestFixture:: prefix. in TYPED_TEST() 100 EXPECT_EQ(5, *TestFixture::shared_); in TYPED_TEST() 103 // "typename TestFixture::" prefix. in TYPED_TEST() 104 typename TestFixture::Vector empty; in TYPED_TEST() 107 typename TestFixture::IntSet empty2; in TYPED_TEST() 267 // the TestFixture:: prefix. in TYPED_TEST_P() 268 EXPECT_EQ(5, *TestFixture::shared_); in TYPED_TEST_P()
|
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/ |
H A D | ANGLETest.h | 563 struct TestFixture struct in ANGLETestBase 565 TestFixture(); 566 ~TestFixture(); 605 static std::map<angle::PlatformParameters, TestFixture> gFixtures; 607 TestFixture *mFixture;
|
H A D | ANGLETest.cpp | 501 TestFixture platform; in ANGLETestBase() 1472 ANGLETestBase::TestFixture::TestFixture() = default; 1473 ANGLETestBase::TestFixture::~TestFixture() = default; 1507 std::map<angle::PlatformParameters, ANGLETestBase::TestFixture> ANGLETestBase::gFixtures;
|
/third_party/skia/third_party/externals/swiftshader/tests/ReactorUnitTests/ |
H A D | ReactorUnitTests.cpp | 2328 using CType = typename TestFixture::CType; 2329 using ReactorType = typename TestFixture::ReactorType; 2393 using CType = typename TestFixture::CType; 2394 using ReactorType = typename TestFixture::ReactorType;
|
Completed in 16 milliseconds