import static org.fest.assertions.Fail.fail;
public class AuthenticationUnmarshallerTest extends UnmarshallerTestCase {
@Test
public void should_unmarshall_valid_authentication() {
Authentication authentication = new AuthenticationUnmarshaller().toModel(loadFile("/authentication/authentication_valid.json"));
assertThat(authentication.isValid()).isTrue();
}