MCPcopy Create free account
hub / github.com/KhronosGroup/SPIRV-Tools / TEST

Function TEST

test/enum_set_test.cpp:313–318  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

311} // namespace
312
313TEST(EnumSet, IsEmpty1) {
314 EnumSet<TestEnum> set;
315 EXPECT_TRUE(set.empty());
316 set.insert(TestEnum::ZERO);
317 EXPECT_FALSE(set.empty());
318}
319
320TEST(EnumSet, IsEmpty2) {
321 EnumSet<TestEnum> set;

Callers

nothing calls this directly

Calls 12

findFunction · 0.85
HasAnyOfMethod · 0.80
containsMethod · 0.80
emptyMethod · 0.45
insertMethod · 0.45
cbeginMethod · 0.45
cendMethod · 0.45
beginMethod · 0.45
endMethod · 0.45
eraseMethod · 0.45

Tested by

no test coverage detected