| 26 | using namespace std; |
| 27 | |
| 28 | TEST(ErasureCodeExample, chunk_size) |
| 29 | { |
| 30 | ErasureCodeExample example; |
| 31 | EXPECT_EQ(3u, example.get_chunk_count()); |
| 32 | EXPECT_EQ(11u, example.get_chunk_size(20)); |
| 33 | } |
| 34 | |
| 35 | TEST(ErasureCodeExample, minimum_to_decode) |
| 36 | { |
nothing calls this directly
no test coverage detected