Lines Matching refs:bins2
1443 C2NumberStreamTuning::input bins2; in TEST_F() local
1455 EXPECT_EQ(ins1.type(), bins2.type()); in TEST_F()
1470 static_assert(!canCallSetPort(bins2), "should not be able to (type)"); in TEST_F()
1481 for (const auto &p : { ins2, bins2 }) { in TEST_F()
1518 for (const auto &p : { ins2, bins2 }) { in TEST_F()
1538 EXPECT_EQ(0, bins2.mNumber); in TEST_F()
1545 EXPECT_EQ(0u, bins2.stream()); in TEST_F()
1553 EXPECT_TRUE(bins2 != bouts2); in TEST_F()
1563 EXPECT_TRUE(ins2 != bins2); in TEST_F()
1564 bins2.mNumber = 100; in TEST_F()
1565 EXPECT_TRUE(ins2 != bins2); in TEST_F()
1566 bins2.setStream(1u); in TEST_F()
1567 EXPECT_TRUE(ins2 == bins2); in TEST_F()
2049 … std::shared_ptr<C2NumbersStreamTuning::input> bins2(C2NumbersStreamTuning::input::AllocShared(1)); in TEST_F() local
2060 static_assert(!canCallSetPort(*bins2), "should not be able to (type)"); in TEST_F()
2072 const C2NumbersStreamTuning::input *SI[] = { ins2.get(), bins2.get() }; in TEST_F()
2133 EXPECT_EQ(0, bins2->m.mNumbers[0]); in TEST_F()
2140 EXPECT_EQ(0u, bins2->stream()); in TEST_F()
2148 EXPECT_TRUE(*bins2 != *bouts2); in TEST_F()
2158 EXPECT_TRUE(*ins2 != *bins2); in TEST_F()
2159 bins2->m.mNumbers[0] = 100; in TEST_F()
2160 EXPECT_TRUE(*ins2 != *bins2); in TEST_F()
2161 bins2->setStream(1u); in TEST_F()
2162 EXPECT_TRUE(*ins2 == *bins2); in TEST_F()