fest-assert-2.x icon indicating copy to clipboard operation
fest-assert-2.x copied to clipboard

FEST Fluent Assertions 2.x

Results 70 fest-assert-2.x issues
Sort by recently updated
recently updated
newest added

Deleting duplicate aq2o-archive-hbase

Since there is no **java.awt** included in Android when we try to do a test compile we see the following: ``` Error:(22, 5) Gradle: error: cannot access BufferedImage class file...

Hi, it would be great to see integration with Java 8. This enables lazy evaluation, which would be helpful to assert that specific exceptions are thrown, e.g. ``` java Assertions.assertThat(()...

Perhaps I just fall on a work in progress, but if I follow the link to http://fest.easytesting.org I just see a default WordPress "article" on the default www domain.

``` java List list1 = new ArrayList(); List list2 = new ArrayList(); List list3 = new ArrayList(); List listOfLists = new ArrayList(); listOfLists.add(list1); listOfLists.add(list2); listOfLists.add(list3); assertThat(listOfLists).contains(list1, list2, list3); // Type...

In reference to http://code.google.com/p/fest/issues/detail?id=101 There is no way currently to call `Assertions.assertThat` with an `Iterator` as parameter. An user can still convert himself the iterator to an iterable, but he...

I have added AbstractMapper.containsKeys(K... keys) and doesNotContainKeys(K... keys). Fixes #126.

I added "contains only once" functionality.

The MapAssert API misses the following method imho: public MapAssert hasSameSizeAs(Map other) With the current API I can only pass in an Object[] or an Iterable, but since I use...

I've encountered an issue when using Java 1.8 (JDK 8). ``` import static org.fest.assertions.api.Assertions.assertThat; public class FestTest { public static T someMethod() { return (T) "123"; } public static void...