diff --git a/GFramework.Core.Tests/architecture/ArchitectureServicesTests.cs b/GFramework.Core.Tests/architecture/ArchitectureServicesTests.cs index 3e607e8..110bcfe 100644 --- a/GFramework.Core.Tests/architecture/ArchitectureServicesTests.cs +++ b/GFramework.Core.Tests/architecture/ArchitectureServicesTests.cs @@ -356,18 +356,6 @@ public class TestArchitectureContextV3 : IArchitectureContext { return _environment; } - - public ValueTask QueryAsync(IRequest query, - CancellationToken cancellationToken = default) - { - throw new NotImplementedException(); - } - - public ValueTask PublishEventAsync(TNotification notification, - CancellationToken cancellationToken = default) where TNotification : INotification - { - throw new NotImplementedException(); - } } #endregion \ No newline at end of file diff --git a/GFramework.Core.Tests/architecture/GameContextTests.cs b/GFramework.Core.Tests/architecture/GameContextTests.cs index 92ee46b..90575be 100644 --- a/GFramework.Core.Tests/architecture/GameContextTests.cs +++ b/GFramework.Core.Tests/architecture/GameContextTests.cs @@ -451,16 +451,4 @@ public class TestArchitectureContext : IArchitectureContext { return Environment; } - - public ValueTask QueryAsync(IRequest query, - CancellationToken cancellationToken = default) - { - throw new NotImplementedException(); - } - - public ValueTask PublishEventAsync(TNotification notification, - CancellationToken cancellationToken = default) where TNotification : INotification - { - throw new NotImplementedException(); - } } \ No newline at end of file