Skip to content

Commit 9c6ca43

Browse files
committed
cleaned up directory structure of the interfaces library
1 parent 7b4790a commit 9c6ca43

42 files changed

Lines changed: 92 additions & 20 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Source/spamfilter/spamfilter.BL.Tests/Detectors/BelowSizeDetectorTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
using spamfilter.BL.Detectors;
33
using spamfilter.BL.Entities;
44
using spamfilter.Interfaces;
5+
using spamfilter.Interfaces.Detectors;
56
using Xunit;
67

78
namespace spamfilter.BL.Tests.Detectors;

Source/spamfilter/spamfilter.BL.Tests/Detectors/ContentBasedDetectorTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
using spamfilter.BL.Entities;
44
using spamfilter.BL.Helpers;
55
using spamfilter.Interfaces;
6+
using spamfilter.Interfaces.Detectors;
67
using Xunit;
78

89
namespace spamfilter.BL.Tests.Detectors;

Source/spamfilter/spamfilter.BL.Tests/Detectors/DetectionResultTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
using spamfilter.BL.Detectors;
33
using spamfilter.BL.Entities;
44
using spamfilter.Interfaces;
5+
using spamfilter.Interfaces.Entities;
56
using Xunit;
67

78
namespace spamfilter.BL.Tests.Detectors;

Source/spamfilter/spamfilter.BL.Tests/Detectors/DetectorGroupTests.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
using spamfilter.BL.Entities;
44
using spamfilter.BL.Environment;
55
using spamfilter.Interfaces;
6+
using spamfilter.Interfaces.Detectors;
7+
using spamfilter.Interfaces.Entities;
68
using Xunit;
79

810
namespace spamfilter.BL.Tests.Detectors;

Source/spamfilter/spamfilter.BL.Tests/Detectors/DetectorMock.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
using spamfilter.BL.Entities;
22
using spamfilter.Interfaces;
3+
using spamfilter.Interfaces.Detectors;
4+
using spamfilter.Interfaces.Entities;
35

46
namespace spamfilter.BL.Tests.Detectors;
57

Source/spamfilter/spamfilter.BL.Tests/Detectors/DomainExpressionBasedDetectorTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
using spamfilter.BL.Detectors;
33
using spamfilter.BL.Entities;
44
using spamfilter.Interfaces;
5+
using spamfilter.Interfaces.Detectors;
56
using Xunit;
67

78
namespace spamfilter.BL.Tests.Detectors;

Source/spamfilter/spamfilter.BL.Tests/Detectors/EmailEndsWithBasedDetectorTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
using spamfilter.BL.Detectors;
33
using spamfilter.BL.Entities;
44
using spamfilter.Interfaces;
5+
using spamfilter.Interfaces.Detectors;
56
using Xunit;
67

78
namespace spamfilter.BL.Tests.Detectors;

Source/spamfilter/spamfilter.BL.Tests/Detectors/ImpersonatorSpamDetectorTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
using spamfilter.BL.Detectors;
33
using spamfilter.BL.Entities;
44
using spamfilter.Interfaces;
5+
using spamfilter.Interfaces.Detectors;
56
using Xunit;
67

78
namespace spamfilter.BL.Tests.Detectors;

Source/spamfilter/spamfilter.BL.Tests/Detectors/InvalidSenderEmailAddressSpamDetectorTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
using spamfilter.BL.Entities;
44
using spamfilter.BL.Helpers;
55
using spamfilter.Interfaces;
6+
using spamfilter.Interfaces.Detectors;
67
using Xunit;
78

89
namespace spamfilter.BL.Tests.Detectors;

Source/spamfilter/spamfilter.BL.Tests/ExtensionMethods/ActionArrayExecuteTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
using spamfilter.Interfaces;
33
using spamfilter.BL.ExtensionMethods;
44
using spamfilter.BL.Tests.Mocks;
5+
using spamfilter.Interfaces.Actions;
56
using Xunit;
67

78
namespace spamfilter.BL.Tests.ExtensionMethods;

0 commit comments

Comments
 (0)