mirror of
https://github.com/jezhiggins/arabica
synced 2024-11-17 07:48:50 +01:00
parameterised execute_test
This commit is contained in:
parent
b730a73f62
commit
16537e03dc
8 changed files with 2428 additions and 4843 deletions
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -33,7 +33,7 @@ int main(int argc, char** argv)
|
|||
runner.addTest("NodeTestTest", NodeTestTest_suite<std::string, Arabica::default_string_adaptor<std::string> >());
|
||||
runner.addTest("StepTest", StepTest_suite<std::string, Arabica::default_string_adaptor<std::string> >());
|
||||
runner.addTest("ParseTest", ParseTest_suite<std::string, Arabica::default_string_adaptor<std::string> >());
|
||||
runner.addTest("ExecuteTest", ExecuteTest_suite());
|
||||
runner.addTest("ExecuteTest", ExecuteTest_suite<std::string, Arabica::default_string_adaptor<std::string> >());
|
||||
|
||||
runner.run(argc, argv);
|
||||
} // main
|
||||
|
|
|
@ -125,15 +125,9 @@
|
|||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath=".\execute_test.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\main.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\relational_test.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,7 +0,0 @@
|
|||
#ifndef XPATHIC_EXECUTE_TEST_HPP
|
||||
#define XPATHIC_EXECUTE_TEST_HPP
|
||||
|
||||
TestSuite* ExecuteTest_suite();
|
||||
|
||||
#endif
|
||||
|
|
@ -16,7 +16,7 @@
|
|||
#include "../XPath/node_test_test.hpp"
|
||||
#include "../XPath/step_test.hpp"
|
||||
#include "../XPath/parse_test.hpp"
|
||||
#include "execute_test.hpp"
|
||||
#include "../XPath/execute_test.hpp"
|
||||
|
||||
#include "../silly_string/silly_string.hpp"
|
||||
|
||||
|
@ -37,7 +37,7 @@ int main(int argc, char** argv)
|
|||
runner.addTest("NodeTestTest", NodeTestTest_suite<silly_string, Arabica::default_string_adaptor<silly_string> >());
|
||||
runner.addTest("StepTest", StepTest_suite<silly_string, Arabica::default_string_adaptor<silly_string> >());
|
||||
runner.addTest("ParseTest", ParseTest_suite<silly_string, Arabica::default_string_adaptor<silly_string> >());
|
||||
runner.addTest("ExecuteTest", ExecuteTest_suite());
|
||||
runner.addTest("ExecuteTest", ExecuteTest_suite<silly_string, Arabica::default_string_adaptor<silly_string> >());
|
||||
|
||||
runner.run(argc, argv);
|
||||
} // main
|
||||
|
|
|
@ -125,9 +125,6 @@
|
|||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath=".\execute_test.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\main.cpp">
|
||||
</File>
|
||||
|
@ -146,7 +143,7 @@
|
|||
RelativePath="..\XPath\axis_enumerator_test.hpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\execute_test.hpp">
|
||||
RelativePath="..\XPath\execute_test.hpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\XPath\logical_test.hpp">
|
||||
|
|
Loading…
Reference in a new issue