예제 #1
0
 public async Task Delete_Returns_NotFound_IfConsumerGroupDoesNotExist()
 {
     var nonExistingCg = new ConsumerGroupBuilder().WithUri(new Uri("http://incredibleUri2020/")).BuildDto();
     await _api.DeleteWithContent_ShouldReturn_NotFound_IfEntityDoesNotExist(PATH, _api.BuildJsonHttpContent(nonExistingCg));
 }