From d0f963c4a6f7ad0e18ad9a0cafbad1eb124934e5 Mon Sep 17 00:00:00 2001 From: Eduardo Pedroni Date: Sun, 30 Aug 2015 22:50:17 +0200 Subject: JUnit tests on Ant are now running, but the CLI tests don't seem to pick up the resources --- .classpath | 3 +- .gitignore | 2 + build/build.xml | 75 +++++++++++++++++++++ build/cardbasecli.xml | 75 --------------------- build/newbuild.xml | 112 ++++++++++++++++++++++++++++++++ lib/junit/hamcrest-core-1.3-sources.jar | Bin 0 -> 32624 bytes lib/junit/hamcrest-core-1.3.jar | Bin 0 -> 45024 bytes lib/junit/junit-4.12-sources.jar | Bin 0 -> 200355 bytes lib/junit/junit-4.12.jar | Bin 0 -> 314932 bytes 9 files changed, 191 insertions(+), 76 deletions(-) create mode 100644 build/build.xml delete mode 100644 build/cardbasecli.xml create mode 100644 build/newbuild.xml create mode 100644 lib/junit/hamcrest-core-1.3-sources.jar create mode 100644 lib/junit/hamcrest-core-1.3.jar create mode 100644 lib/junit/junit-4.12-sources.jar create mode 100644 lib/junit/junit-4.12.jar diff --git a/.classpath b/.classpath index eaefb07..2fd2bdf 100644 --- a/.classpath +++ b/.classpath @@ -15,6 +15,7 @@ - + + diff --git a/.gitignore b/.gitignore index 49a0b91..d0bc10e 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,5 @@ __pycache__/ bin/ dist/ test/spike/ +build/main/ +build/test/ diff --git a/build/build.xml b/build/build.xml new file mode 100644 index 0000000..ce3d166 --- /dev/null +++ b/build/build.xml @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/build/cardbasecli.xml b/build/cardbasecli.xml deleted file mode 100644 index 12c4c40..0000000 --- a/build/cardbasecli.xml +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/build/newbuild.xml b/build/newbuild.xml new file mode 100644 index 0000000..2bbfd65 --- /dev/null +++ b/build/newbuild.xml @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/lib/junit/hamcrest-core-1.3-sources.jar b/lib/junit/hamcrest-core-1.3-sources.jar new file mode 100644 index 0000000..c3c110b Binary files /dev/null and b/lib/junit/hamcrest-core-1.3-sources.jar differ diff --git a/lib/junit/hamcrest-core-1.3.jar b/lib/junit/hamcrest-core-1.3.jar new file mode 100644 index 0000000..9d5fe16 Binary files /dev/null and b/lib/junit/hamcrest-core-1.3.jar differ diff --git a/lib/junit/junit-4.12-sources.jar b/lib/junit/junit-4.12-sources.jar new file mode 100644 index 0000000..884f92f Binary files /dev/null and b/lib/junit/junit-4.12-sources.jar differ diff --git a/lib/junit/junit-4.12.jar b/lib/junit/junit-4.12.jar new file mode 100644 index 0000000..3a7fc26 Binary files /dev/null and b/lib/junit/junit-4.12.jar differ -- cgit v1.2.3