Categories:
Audio (13)
Biotech (29)
Bytecode (35)
Database (77)
Framework (7)
Game (7)
General (512)
Graphics (53)
I/O (32)
IDE (2)
JAR Tools (86)
JavaBeans (16)
JDBC (89)
JDK (337)
JSP (20)
Logging (103)
Mail (54)
Messaging (8)
Network (71)
PDF (94)
Report (7)
Scripting (83)
Security (32)
Server (119)
Servlet (17)
SOAP (24)
Testing (50)
Web (19)
XML (301)
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, 2103👍, 0💬
Popular Posts:
Java Cryptography Extension 1.6 JAR File Size and Download Location: File name: jce.jar, jce-1.6.jar...
Apache Neethi provides general framework for the programmers to use WS Policy. It is compliant with ...
Xalan-Java, Version 2.7.1, is an XSLT processor for transforming XML documents into HTML, text, or o...
JDK 7 tools.jar is the JAR file for JDK 7 tools. It contains Java classes to support different JDK t...
JDK 11 jdk.scripting.nashorn.jm odis the JMOD file for JDK 11 Scripting Nashorn module. JDK 11 Scrip...