Browse Source
Merge pull request #14240 from abpframework/liangshiwei/patch
Fix unit tests
pull/13230/head
maliming
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
0 deletions
-
framework/test/Volo.Abp.TestApp/Volo/Abp/TestApp/Testing/EntityCache_Tests.cs
|
|
|
@ -2,6 +2,7 @@ |
|
|
|
using System.Text.Json.Serialization; |
|
|
|
using System.Threading.Tasks; |
|
|
|
using Shouldly; |
|
|
|
using Volo.Abp.Caching; |
|
|
|
using Volo.Abp.Domain.Entities; |
|
|
|
using Volo.Abp.Domain.Entities.Auditing; |
|
|
|
using Volo.Abp.Domain.Entities.Caching; |
|
|
|
@ -110,6 +111,7 @@ public class Product : FullAuditedAggregateRoot<Guid> |
|
|
|
} |
|
|
|
|
|
|
|
[Serializable] |
|
|
|
[CacheName("ProductCacheItem")] |
|
|
|
public class ProductCacheItem |
|
|
|
{ |
|
|
|
public Guid Id { get; set; } |
|
|
|
|