Exclude fake from code coverage
50581d4d
Pavlo Rytikov
committed
1 changed file
InProcessMutableQueryModelStorage.cs
/test/Intellias.CQRS.Tests.Core/Fakes/InProcessMutableQueryModelStorage.cs+2
/test/Intellias.CQRS.Tests.Core/Fakes/InProcessMutableQueryModelStorage.cs
Add comment 1 using System;
Add comment 2 using System.Collections.Generic;
Add comment 3 Plus  using System.Diagnostics.CodeAnalysis;
Add comment 3 4 using System.Linq;
Add comment 4 5 using System.Threading.Tasks;
Add comment 5 6 using Intellias.CQRS.Core.Messages;
Add comment 8 9
Add comment 9 10 namespace Intellias.CQRS.Tests.Core.Fakes
Add comment 10 11 {
Add comment 12 Plus   [ExcludeFromCodeCoverage]
Add comment 11 13 public class InProcessMutableQueryModelStorage<TQueryModel> :
Add comment 12 14 IMutableQueryModelReader<TQueryModel>,
Add comment 13 15 IMutableQueryModelWriter<TQueryModel>