Skip to content

Commit

Permalink
Empty test for ApiDependencyValidator was added
Browse files Browse the repository at this point in the history
  • Loading branch information
litichevskiydv committed Nov 20, 2024
1 parent 6ccd5a9 commit 81a3d3d
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@ static ApiDependencyValidatorTest()
ApiDependenciesValidationTestCases
= new TheoryData<DependencyValidatorTestCase>
{
new DependencyValidatorTestCase
{
Description = "There are no API dependencies in either the architecture or the application",
Dependencies = Array.Empty<DependencyBase>(),
ServiceImplementation = new ServiceImplementation {ServiceAssemblies = Array.Empty<Assembly>()},
ExpectedErrors = Array.Empty<string>()
},
new DependencyValidatorTestCase
{
Description = "A dependency missing from the architecture has been added to the service",
Expand Down

0 comments on commit 81a3d3d

Please sign in to comment.