MCPcopy Create free account
hub / github.com/atcoder/ac-library / TEST

Function TEST

test/unittest/dsu_test.cpp:11–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9using ull = unsigned long long;
10
11TEST(DSUTest, Zero) {
12 dsu uf(0);
13 ASSERT_EQ(std::vector<std::vector<int>>(), uf.groups());
14}
15
16TEST(DSUTest, Empty) {
17 dsu uf;

Callers

nothing calls this directly

Calls 6

groupsMethod · 0.80
sameMethod · 0.80
mergeMethod · 0.80
leaderMethod · 0.80
dsuClass · 0.50
sizeMethod · 0.45

Tested by

no test coverage detected