use of com.tvd12.ezyhttp.server.graphql.GraphQLDataFetcher in project ezyhttp by youngmonkeys.
the class GraphQLControllerTest method testNoNameDataFetcher.
@Test
public void testNoNameDataFetcher() {
// given
GraphQLDataFetcher nonameDataFetcher = new GraphQLNoNameDataFetcher();
// when
Throwable e = Asserts.assertThrows(() -> GraphQLDataFetcherManager.builder().addDataFetcher(nonameDataFetcher).build());
// then
Asserts.assertEquals(EzyNotImplementedException.class.toString(), e.getClass().toString());
}
Aggregations