JUnit Test 'assertNotSame' Example Using Ant
As like the previous example it illustrates about how to use the 'assertNotSame' assertion method. The method is used to compare between two variable whether both are same or not, if both 'expected' and 'actual' are not same then the AssertionError Exception throw the following error:
[junit] Testsuite: AssertNotSameExample
[junit] Tests run: 2, Failures: 1, Errors: 0, Time elapsed: 0.046 sec
[junit]
[junit] Testcase: test(AssertNotSameExample): FAILED
[junit] expected not same
[junit] junit.framework.AssertionFailedError: expected not same
[junit] at AssertNotSameExample.test(Unknown Source)
[junit]
[junit]
[junit] Test AssertNotSameExample FAILED
but if both are same then the program executed test case successfully. In this example build.xml file is used to compile, test and run the java file. The <property name="TALK" value ="true"/> is used to search path for source files, search path for class files, parsing the jar file, loading the all required classes and checking the class file. If <property name="TALK" value ="true"/> is not used in build.xml file then the output displays only [junit] Testsuite.
build.xml
<project name="JUnitTest" default="test" basedir=".">
|
Source Code of AssertNotSameExample.java
import junit.framework.*;
|
output: