Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (322)
Collections:
Other Resources:
JUnit 3.8.1 Example Program for Hamcrest 1.3
Where can I find an example program to use JUnit 3.8.1 with Hamcrest 1.3?
✍: FYIcenter.com
Hamcrest is a framework for writing matcher objects allowing 'match' rules to be defined declaratively.
The hamcrest-generator-1.3.zip contains a some examples on how to use Hamcrest
with JUnit 3.x and JUnit 4.x in the "hamcrest-examples" folder.
Here is the source of ExampleWithAssertThat.java:
package org.hamcrest.examples.junit3;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.containsString;
import static org.hamcrest.Matchers.is;
import static org.hamcrest.Matchers.not;
import junit.framework.TestCase;
/**
* Demonstrates how Hamcrest matchers can be used with assertThat()
* using JUnit 3.8.x.
*
* @author Joe Walnes
*/
public class ExampleWithAssertThat extends TestCase {
public void testUsingAssertThat() {
assertThat("xx", is("xx"));
assertThat("yy", is(not("xx")));
assertThat("i like cheese", containsString("cheese"));
}
}
This example shows that:
2016-03-25, ∼3369🔥, 0💬
Popular Posts:
ANTLR is a powerful parser generator for multiple programming languages including Java. ANTLR contai...
How to perform XML Schema validation with sax\Writer.java provided in the Apache Xerces package? You...
What Is javaws.jar in JRE (Java Runtime Environment) 8? javaws.jar in JRE (Java Runtime Environment)...
JDK 17 java.compiler.jmod is the JMOD file for JDK 17 Compiler module. JDK 17 Compiler module compil...
JDK 17 java.rmi.jmod is the JMOD file for JDK 17 RMI (Remote Method Invocation) module. JDK 17 RMI m...