Uses of Class
org.fest.assertions.api.ObjectAssert

Packages that use ObjectAssert
org.fest.assertions.api   
 

Uses of ObjectAssert in org.fest.assertions.api
 

Methods in org.fest.assertions.api that return ObjectAssert
static ObjectAssert Assertions.assertThat(Object actual)
          Creates a new instance of ObjectAssert.
 ObjectAssert ObjectAssert.isInstanceOf(Class<?> type)
          Verifies that the actual Object is an instance of the given type.
 ObjectAssert ObjectAssert.isInstanceOfAny(Class<?>... types)
          Verifies that the actual Object is an instance of any of the given types.
 ObjectAssert ObjectAssert.isLenientEqualsToByAcceptingFields(Object other, String... fields)
          Assert that the actual object is lenient equals to given one by only comparing actual and other on the given "accepted" fields only.
 ObjectAssert ObjectAssert.isLenientEqualsToByIgnoringFields(Object other, String... fields)
          Assert that the actual object is lenient equals to given one by comparing actual and other fields except the given "ignored" fields.
 ObjectAssert ObjectAssert.isLenientEqualsToByIgnoringNullFields(Object other)
          Assert that the actual object is lenient equals to given one by only comparing actual and not null other fields.
 



Copyright © 2007-2012 FEST (Fixtures for Easy Software Testing). All Rights Reserved.