fixes
This commit is contained in:
parent
f55f12dfd0
commit
6acb0c0c8f
|
|
@ -132,7 +132,7 @@ namespace FruitBankHybrid.Shared.Tests
|
|||
var shippingItems = await _signalRClient.GetShippingItems();
|
||||
|
||||
Assert.IsNotNull(shippingItems);
|
||||
Assert.IsTrue(shippingItems.Any());
|
||||
Assert.IsTrue(shippingItems.Count != 0);
|
||||
}
|
||||
|
||||
//[TestMethod]
|
||||
|
|
@ -216,7 +216,7 @@ namespace FruitBankHybrid.Shared.Tests
|
|||
var users = await _signalRClient.GetMeasuringUsers();
|
||||
|
||||
Assert.IsNotNull(users);
|
||||
Assert.IsTrue(users.Any());
|
||||
Assert.IsTrue(users.Count != 0);
|
||||
Assert.IsTrue(users.All(x => !x.Email.IsNullOrEmpty() && !x.Deleted));
|
||||
}
|
||||
|
||||
|
|
@ -230,7 +230,7 @@ namespace FruitBankHybrid.Shared.Tests
|
|||
var productDto = await _signalRClient.GetProductDtos();
|
||||
|
||||
Assert.IsNotNull(productDto);
|
||||
Assert.IsTrue(productDto.Any());
|
||||
Assert.IsTrue(productDto.Count != 0);
|
||||
Assert.IsTrue(productDto.All(x => !x.Name.IsNullOrEmpty() && !x.Deleted));
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,9 +1,5 @@
|
|||
using DevExpress.Blazor;
|
||||
using AyCode.Core.Loggers;
|
||||
using AyCode.Services.Server.SignalRs;
|
||||
using FruitBank.Common;
|
||||
using FruitBank.Common.Interfaces;
|
||||
using FruitBank.Common.Loggers;
|
||||
using FruitBank.Common.Server.Services.Loggers;
|
||||
using FruitBank.Common.Server.Services.SignalRs;
|
||||
using FruitBankHybrid.Shared.Services;
|
||||
|
|
|
|||
Loading…
Reference in New Issue