Debugging and refactoring

This commit is contained in:
2018-01-10 16:38:18 +01:00
parent 1acf59a08a
commit ba2fc91c74
5 changed files with 62 additions and 36 deletions
+13
View File
@@ -0,0 +1,13 @@
#include "gtest/gtest.h"
#include "RingBuffer.hpp"
TEST(RingBufferTest, simple_operation)
{
EXPECT_EQ(1000, 1000);
}
int main(int argc, char **argv) {
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}