use of org.assertj.core.internal.Throwables in project assertj-core by joel-costigliola.
the class ThrowablesBaseTest method setUp.
@Before
public void setUp() {
failures = spy(new Failures());
throwables = new Throwables();
throwables.failures = failures;
}
Aggregations