We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 787d129 commit 791d655Copy full SHA for 791d655
tests/CMakeLists.txt
@@ -1,4 +1,7 @@
1
if(BUILD_TESTING)
2
add_executable( expression_tree_test test.cpp )
3
add_test( expression_tree_test ${EXECUTABLE_OUTPUT_PATH}/expression_tree_test )
4
+
5
+ add_executable( operators_test operators.cpp )
6
+ add_test( operators_test ${EXECUTABLE_OUTPUT_PATH}/operators_test )
7
endif()
tests/operators.cpp
@@ -0,0 +1,12 @@
+#include <attwoodn/expression_tree.hpp>
+#include <cassert>
+using namespace attwoodn::expression_tree;
+int main(int argc, char** argv) {
+ std::string hello = "hello world";
8
9
+ //assert(op::equals(hello, hello));
10
11
+ return EXIT_SUCCESS;
12
+}
0 commit comments