FEST Fluent Assertions.
'Flexible' or 'fluent' assertions for testing.
Here is the list of declaration for fest-assert. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.easytesting</groupId> <artifactId>fest-assert</artifactId> <version>1.4</version> </dependency>
If you think this Maven repository POM file listing for fest-assert is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The fest-assert-1.4 has 5 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Library | fest-util 1.1.6 Utility methods used by FEST modules | 11 |
Development | fest-reflect 1.2 Fluent Interface that simplifies usage of Java Reflection | 19 |
JUnit | junit 4.8.2 JUnit is a regression testing framework. It is used by the developer who implements unit tests in Java. | 919 |
The following table lists the most popular artifacts which are depending on fest-assert-1.4. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Web Framework | smartsprites 0.2.10 CSS Sprites Generator Done Right. SmartSprites maintains CSS sprites in your designs, fully automatically. No tedious copying and pasting to your CSS when adding or changing sprited images. | 15 |
Inversion of Control | nuun-log-plugin 1.0.M1 Nuun Log Plugin will manage the injection of SL4J Logger. | 5 |
JEE | common-jackson 1.7 Jackson dependencies and helper utilities | 15 |
The following packages are defined in the fest-assert-1.4.jar
org.fest.assertions
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd "> <modelVersion>4.0.0</modelVersion> <groupId>org.easytesting</groupId> <artifactId>fest-assert</artifactId> <version>1.4</version> <name>FEST Fluent Assertions</name> <description>'Flexible' or 'fluent' assertions for testing</description> <inceptionYear>2007</inceptionYear> <url>http://fest.easytesting.org/assert</url> <parent> <groupId>org.easytesting</groupId> <artifactId>fest</artifactId> <version>1.0.8</version> </parent> <mailingLists> <mailingList> <name>Easy Testing Group</name> <post>http://groups.google.com/group/easytesting</post> <subscribe>http://groups.google.com/group/easytesting</subscribe> <unsubscribe>http://groups.google.com/group/easytesting</unsubscribe> </mailingList> </mailingLists> <scm> <developerConnection>scm:git:git@github.com:alexruiz/fest-assert-1.x.git</developerConnection> <connection>scm:git:git://github.com/alexruiz/fest-assert-1.x.git</connection> <url>https://github.com/alexruiz/fest-assert-1.x</url> </scm> <issueManagement> <system>JIRA</system> <url>http://jira.codehaus.org/browse/FEST</url> </issueManagement> <dependencies> <dependency> <groupId>org.easytesting</groupId> <artifactId>fest-util</artifactId> <version>1.1.6</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.easytesting</groupId> <artifactId>fest-reflect</artifactId> <version>1.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.easytesting</groupId> <artifactId>fest-test</artifactId> <version>2.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.easytesting</groupId> <artifactId>fest-mocks</artifactId> <version>1.1.1</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.2</version> <scope>test</scope> </dependency> </dependencies> </project>