tests: add tests for nitunit before and after module
authorAlexandre Terrasa <alexandre@moz-code.org>
Fri, 3 Feb 2017 06:56:06 +0000 (01:56 -0500)
committerAlexandre Terrasa <alexandre@moz-code.org>
Fri, 3 Feb 2017 06:56:06 +0000 (01:56 -0500)
Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

tests/nitunit.args
tests/sav/nitunit_args11.res [new file with mode: 0644]
tests/sav/nitunit_args12.res [new file with mode: 0644]
tests/test_nitunit6.nit [new file with mode: 0644]
tests/test_nitunit7.nit [new file with mode: 0644]

index 6474d63..f11b0b1 100644 (file)
@@ -8,3 +8,5 @@ test_nitunit_md.md --no-color -o $WRITE
 test_doc3.nit --no-color -o $WRITE
 test_nitunit4 --no-color -o $WRITE
 test_nitunit5.nit --no-color -o $WRITE
+test_nitunit6.nit --no-color -o $WRITE
+test_nitunit7.nit --no-color -o $WRITE
diff --git a/tests/sav/nitunit_args11.res b/tests/sav/nitunit_args11.res
new file mode 100644 (file)
index 0000000..0a8b785
--- /dev/null
@@ -0,0 +1,16 @@
+==== Test-suite of module test_nitunit6::test_nitunit6 | tests: 3
+[KO] test_nitunit6::test_nitunit6$core::Sys$before_module
+     test_nitunit6.nit:27,1--29,3: Runtime Error in file nitunit.out/gen_test_nitunit6.nit
+     Output
+       Runtime error: Assert failed (test_nitunit6.nit:28)
+
+[KO] test_nitunit6$TestNitunit6$test_foo
+     test_nitunit6.nit:22,2--24,4: Nitunit Error: before_module test failed
+[KO] test_nitunit6::test_nitunit6$core::Sys$after_module
+     test_nitunit6.nit:31,1--33,3: Nitunit Error: before_module test failed
+
+Docunits: Entities: 5; Documented ones: 0; With nitunits: 0
+Test suites: Classes: 1; Test Cases: 3; Failures: 3
+[FAILURE] 3/3 tests failed.
+`nitunit.out` is not removed for investigation.
+<testsuites><testsuite package="test_nitunit6::test_nitunit6"></testsuite><testsuite package="test_nitunit6"><testcase classname="nitunit.test_nitunit6.TestNitunit6" name="test_foo" time="0.0"><failure message="Nitunit Error: before_module test failed"></failure></testcase></testsuite></testsuites>
\ No newline at end of file
diff --git a/tests/sav/nitunit_args12.res b/tests/sav/nitunit_args12.res
new file mode 100644 (file)
index 0000000..aa79730
--- /dev/null
@@ -0,0 +1,14 @@
+==== Test-suite of module test_nitunit7::test_nitunit7 | tests: 3
+[OK] test_nitunit7::test_nitunit7$core::Sys$before_module
+[OK] test_nitunit7$TestNitunit7$test_foo
+[KO] test_nitunit7::test_nitunit7$core::Sys$after_module
+     test_nitunit7.nit:31,1--33,3: Runtime Error in file nitunit.out/gen_test_nitunit7.nit
+     Output
+       Runtime error: Assert failed (test_nitunit7.nit:32)
+
+
+Docunits: Entities: 5; Documented ones: 0; With nitunits: 0
+Test suites: Classes: 1; Test Cases: 3; Failures: 1
+[FAILURE] 1/3 tests failed.
+`nitunit.out` is not removed for investigation.
+<testsuites><testsuite package="test_nitunit7::test_nitunit7"></testsuite><testsuite package="test_nitunit7"><testcase classname="nitunit.test_nitunit7.TestNitunit7" name="test_foo" time="0.0"><system-err></system-err></testcase></testsuite></testsuites>
\ No newline at end of file
diff --git a/tests/test_nitunit6.nit b/tests/test_nitunit6.nit
new file mode 100644 (file)
index 0000000..97eca0a
--- /dev/null
@@ -0,0 +1,33 @@
+# This file is part of NIT ( http://www.nitlanguage.org ).
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+module test_nitunit6 is test_suite
+
+import test_suite
+
+class TestNitunit6
+       super TestSuite
+
+       fun test_foo do
+               assert true
+       end
+end
+
+redef fun before_module do
+       assert false
+end
+
+redef fun after_module do
+       assert false
+end
diff --git a/tests/test_nitunit7.nit b/tests/test_nitunit7.nit
new file mode 100644 (file)
index 0000000..63f47ea
--- /dev/null
@@ -0,0 +1,33 @@
+# This file is part of NIT ( http://www.nitlanguage.org ).
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+module test_nitunit7 is test_suite
+
+import test_suite
+
+class TestNitunit7
+       super TestSuite
+
+       fun test_foo do
+               assert true
+       end
+end
+
+redef fun before_module do
+       assert true
+end
+
+redef fun after_module do
+       assert false
+end