|
@@ -71,5 +71,7 @@ public class IndustryApplicationTest : TestBase
|
|
|
var caseId = await _industryApplication.AddIndustryCaseAsync(industryCase);
|
|
|
var items = await _industryApplication.GetIndustryCaseItems(new IndustryCaseItemInDto(null, null)).ToListAsync();
|
|
|
items.Count.ShouldNotBe(0);
|
|
|
+ items.Any(m => m.Id.IsNullOrEmpty()).ShouldBeFalse();
|
|
|
+ items.Any(m => m.Name.IsNullOrEmpty()).ShouldBeFalse();
|
|
|
}
|
|
|
}
|