Parsodus/tests/test.cpp

8 lines
150 B
C++
Raw Normal View History

2016-11-27 14:49:28 +01:00
#include <iostream>
#include "gtest/gtest.h"
TEST(parsodus, temporary) {
std::string parsodus = "awesome";
ASSERT_EQ(parsodus, "awesome");
}