public void GetAllItemsFromSet_Throws()
 {
     // GIVEN WHEN THEN
     Assert.Throws <HangfireElasticSearchException>(() => _elasticConnection.GetAllItemsFromSet("key"));
 }
Ejemplo n.º 2
0
 public void GetAllItemsFromSet_WithNullKey_Throws()
 {
     Assert.Throws <ArgumentNullException>(() => _elasticConnection.GetAllItemsFromSet(null));
 }