摘要: #include "gtest/gtest.h"#include "Util/LoopQueue/LoopQueue.h"struct LoopQueueTest : testing::Test{protected: LoopQueue loopQueue;};TEST_F(LoopQueueTest, should_return_n_when_n_less_than_MAX_LOOP_QUEUE_LEN){ loopQueue.add(1); loopQueue.add(2); loopQueue.add(3); loopQueue.add(4); l 阅读全文
posted @ 2013-09-06 23:46 myfav 阅读(319) 评论(0) 推荐(0) 编辑