From 036d63e6cfb1138d78df471e8926a428842bdb93 Mon Sep 17 00:00:00 2001 From: Daniel Pfeifer Date: Fri, 29 May 2015 20:40:38 +0200 Subject: [PATCH] drop suffix 'Test' from tests --- ...pressionTest.cpp => BooleanExpression.cpp} | 0 tests/CMakeLists.txt | 26 +++++++++---------- .../{CustomQueryTest.cpp => CustomQuery.cpp} | 0 tests/{FunctionTest.cpp => Function.cpp} | 0 tests/{InsertTest.cpp => Insert.cpp} | 0 tests/{InterpretTest.cpp => Interpret.cpp} | 0 tests/{PreparedTest.cpp => Prepared.cpp} | 0 tests/{RemoveTest.cpp => Remove.cpp} | 0 tests/{ResultTest.cpp => Result.cpp} | 0 tests/{SelectTest.cpp => Select.cpp} | 0 tests/{SelectTypeTest.cpp => SelectType.cpp} | 0 tests/{UnionTest.cpp => Union.cpp} | 0 tests/{UpdateTest.cpp => Update.cpp} | 0 tests/{WithTest.cpp => With.cpp} | 0 14 files changed, 13 insertions(+), 13 deletions(-) rename tests/{BooleanExpressionTest.cpp => BooleanExpression.cpp} (100%) rename tests/{CustomQueryTest.cpp => CustomQuery.cpp} (100%) rename tests/{FunctionTest.cpp => Function.cpp} (100%) rename tests/{InsertTest.cpp => Insert.cpp} (100%) rename tests/{InterpretTest.cpp => Interpret.cpp} (100%) rename tests/{PreparedTest.cpp => Prepared.cpp} (100%) rename tests/{RemoveTest.cpp => Remove.cpp} (100%) rename tests/{ResultTest.cpp => Result.cpp} (100%) rename tests/{SelectTest.cpp => Select.cpp} (100%) rename tests/{SelectTypeTest.cpp => SelectType.cpp} (100%) rename tests/{UnionTest.cpp => Union.cpp} (100%) rename tests/{UpdateTest.cpp => Update.cpp} (100%) rename tests/{WithTest.cpp => With.cpp} (100%) diff --git a/tests/BooleanExpressionTest.cpp b/tests/BooleanExpression.cpp similarity index 100% rename from tests/BooleanExpressionTest.cpp rename to tests/BooleanExpression.cpp diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 4461ce0d..eab34265 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -6,20 +6,20 @@ macro (build_and_run arg) add_test("${arg}" "${CMAKE_BINARY_DIR}/tests/${arg}") endmacro () -build_and_run(BooleanExpressionTest) -build_and_run(CustomQueryTest) -build_and_run(InterpretTest) -build_and_run(InsertTest) -build_and_run(RemoveTest) -build_and_run(UpdateTest) -build_and_run(SelectTest) -build_and_run(SelectTypeTest) -build_and_run(FunctionTest) -build_and_run(PreparedTest) +build_and_run(BooleanExpression) +build_and_run(CustomQuery) +build_and_run(Interpret) +build_and_run(Insert) +build_and_run(Remove) +build_and_run(Update) +build_and_run(Select) +build_and_run(SelectType) +build_and_run(Function) +build_and_run(Prepared) build_and_run(Minimalistic) -build_and_run(ResultTest) -build_and_run(UnionTest) -build_and_run(WithTest) +build_and_run(Result) +build_and_run(Union) +build_and_run(With) # if you want to use the generator, you can do something like this: #find_package(PythonInterp REQUIRED) diff --git a/tests/CustomQueryTest.cpp b/tests/CustomQuery.cpp similarity index 100% rename from tests/CustomQueryTest.cpp rename to tests/CustomQuery.cpp diff --git a/tests/FunctionTest.cpp b/tests/Function.cpp similarity index 100% rename from tests/FunctionTest.cpp rename to tests/Function.cpp diff --git a/tests/InsertTest.cpp b/tests/Insert.cpp similarity index 100% rename from tests/InsertTest.cpp rename to tests/Insert.cpp diff --git a/tests/InterpretTest.cpp b/tests/Interpret.cpp similarity index 100% rename from tests/InterpretTest.cpp rename to tests/Interpret.cpp diff --git a/tests/PreparedTest.cpp b/tests/Prepared.cpp similarity index 100% rename from tests/PreparedTest.cpp rename to tests/Prepared.cpp diff --git a/tests/RemoveTest.cpp b/tests/Remove.cpp similarity index 100% rename from tests/RemoveTest.cpp rename to tests/Remove.cpp diff --git a/tests/ResultTest.cpp b/tests/Result.cpp similarity index 100% rename from tests/ResultTest.cpp rename to tests/Result.cpp diff --git a/tests/SelectTest.cpp b/tests/Select.cpp similarity index 100% rename from tests/SelectTest.cpp rename to tests/Select.cpp diff --git a/tests/SelectTypeTest.cpp b/tests/SelectType.cpp similarity index 100% rename from tests/SelectTypeTest.cpp rename to tests/SelectType.cpp diff --git a/tests/UnionTest.cpp b/tests/Union.cpp similarity index 100% rename from tests/UnionTest.cpp rename to tests/Union.cpp diff --git a/tests/UpdateTest.cpp b/tests/Update.cpp similarity index 100% rename from tests/UpdateTest.cpp rename to tests/Update.cpp diff --git a/tests/WithTest.cpp b/tests/With.cpp similarity index 100% rename from tests/WithTest.cpp rename to tests/With.cpp