maliming
3 years ago
No known key found for this signature in database
GPG Key ID: A646B9CB645ECEA4
1 changed files with
4 additions and
1 deletions
-
framework/test/Volo.Abp.Auditing.Tests/Volo/Abp/Auditing/Auditing_Tests.cs
|
|
|
@ -409,7 +409,10 @@ public class Auditing_Tests : AbpAuditingTestBase |
|
|
|
} |
|
|
|
|
|
|
|
#pragma warning disable 4014
|
|
|
|
AuditingStore.Received().SaveAsync(Arg.Is<AuditLogInfo>(x => x.EntityChanges.Count == 1 && |
|
|
|
AuditingStore.Received().SaveAsync(Arg.Is<AuditLogInfo>(x => x.EntityChanges.Count == 2 && |
|
|
|
x.EntityChanges[1].ChangeType == EntityChangeType.Updated && |
|
|
|
x.EntityChanges[1].EntityTypeFullName == typeof(AppEntityWithValueObject).FullName && |
|
|
|
|
|
|
|
x.EntityChanges[0].ChangeType == EntityChangeType.Updated && |
|
|
|
x.EntityChanges[0].EntityTypeFullName == typeof(AppEntityWithValueObjectAddress).FullName && |
|
|
|
x.EntityChanges[0].PropertyChanges.Count == 1 && |
|
|
|
|