
com.github.ngeor.spring.Assertions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-test-utils Show documentation
Show all versions of spring-test-utils Show documentation
Testing utilities for Spring
The newest version!
package com.github.ngeor.spring;
import org.springframework.http.ResponseEntity;
import org.springframework.test.web.servlet.ResultActions;
/**
* Entry point for assertion DSL.
*/
@SuppressWarnings("WeakerAccess")
public final class Assertions {
private Assertions() {
}
public static ResultActionsAssert assertThat(ResultActions resultActions) {
return new ResultActionsAssert(resultActions);
}
public static ResponseEntityAssert assertThat(ResponseEntity responseEntity) {
return new ResponseEntityAssert<>(responseEntity);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy