summaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test-cpp.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test-cpp.cpp b/tests/test-cpp.cpp
index adfa54b..0a0276e 100644
--- a/tests/test-cpp.cpp
+++ b/tests/test-cpp.cpp
@@ -78,13 +78,13 @@ TEST_F(CppTest, preprocessing_tokenize_compile_error) {
FAIL() << "Exception expected";
}
-TEST(Cpp, compile) {
+TEST_F(CppTest, compile) {
CPP cpp;
cpp.compile("int main() { return 1 + 1; }");
}
-TEST(Cpp, compile_2_times) {
+TEST_F(CppTest, compile_2_times) {
CPP cpp;
cpp.compile("int main() { return (1 + 2) * 2; }");