Skip to content

Commit

Permalink
extract Services folder in integration tests proj
Browse files Browse the repository at this point in the history
  • Loading branch information
mariusz96 committed Dec 15, 2023
1 parent 353edaf commit a9ed830
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Routing;
using UriGeneration.IntegrationTests.Models;
using UriGeneration.IntegrationTests.Services;

namespace UriGeneration.IntegrationTests.Controllers
{
Expand Down
6 changes: 0 additions & 6 deletions test/UriGeneration.IntegrationTests/ITestService.cs

This file was deleted.

6 changes: 6 additions & 0 deletions test/UriGeneration.IntegrationTests/Services/ITestService.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
namespace UriGeneration.IntegrationTests.Services
{
public interface ITestService
{
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace UriGeneration.IntegrationTests
namespace UriGeneration.IntegrationTests.Services
{
public class TestService : ITestService
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using UriGeneration.IntegrationTests.Services;

namespace UriGeneration.IntegrationTests.WebApplicationFactories
{
Expand Down

0 comments on commit a9ed830

Please sign in to comment.