예제 #1
0
 public void SetShipmentStatus_No_Error()
 {
     var api = new CaseStackApiMock();
     api.SetShipmentStatus(0, CaseStackApi.ShipmentStatus.Archived);
 }
예제 #2
0
 public void SetShipmentStatus_Throws_HttpException()
 {
     var api = new CaseStackApiMock();
     Assert.Throws<HttpException>(() => api.SetShipmentStatus(-1, CaseStackApi.ShipmentStatus.Archived));
 }