mirror of
https://github.com/paulscherrerinstitute/sf_daq_buffer.git
synced 2026-04-22 16:14:36 +02:00
13 lines
232 B
C++
13 lines
232 B
C++
#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();
|
|
} |