@Test
  public void patchShouldNotBeSupported() {

    // Given
    ServerContext context = mock(ServerContext.class);
    PatchRequest request = mock(PatchRequest.class);
    ResultHandler<Resource> handler = mock(ResultHandler.class);

    // When
    resource.patchInstance(context, "RESOURCE_SET_UID", request, handler);

    // Then
    verify(handler).handleError(Matchers.<NotSupportedException>anyObject());
  }