MCPcopy Create free account
hub / github.com/SuprDewd/CompetitiveProgramming / assert_equal

Function assert_equal

code/geometry/primitives3d.test.cpp:8–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6}
7
8void assert_equal(point3d a, point3d b) {
9 assert_nearly_equal(a.x, b.x);
10 assert_nearly_equal(a.y, b.y);
11 assert_nearly_equal(a.z, b.z);
12}
13
14void test() {
15 point3d p;

Callers 1

testFunction · 0.70

Calls 1

assert_nearly_equalFunction · 0.70

Tested by

no test coverage detected