Skip to content

Commit

Permalink
Rename test project root namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
marxjmoura committed Mar 31, 2020
1 parent 85f6324 commit e119522
Show file tree
Hide file tree
Showing 30 changed files with 36 additions and 36 deletions.
2 changes: 1 addition & 1 deletion src/CronQuery.Tests/Fakes/Jobs/JobBadlyConfigured.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using CronQuery.Mvc.Jobs;
using CronQuery.Mvc.Options;

namespace tests.Fakes.Jobs
namespace CronQuery.Tests.Fakes.Jobs
{
public class JobBadlyConfigured : IJob
{
Expand Down
2 changes: 1 addition & 1 deletion src/CronQuery.Tests/Fakes/Jobs/JobNotEnqueued.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
using CronQuery.Mvc.Jobs;
using CronQuery.Mvc.Options;

namespace tests.Fakes.Jobs
namespace CronQuery.Tests.Fakes.Jobs
{
public class JobNotEnqueued : IJob
{
Expand Down
2 changes: 1 addition & 1 deletion src/CronQuery.Tests/Fakes/Jobs/JobStopped.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
using CronQuery.Mvc.Jobs;
using CronQuery.Mvc.Options;

namespace tests.Fakes.Jobs
namespace CronQuery.Tests.Fakes.Jobs
{
public class JobStopped : IJob
{
Expand Down
2 changes: 1 addition & 1 deletion src/CronQuery.Tests/Fakes/Jobs/JobSuccessful.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
using CronQuery.Mvc.Jobs;
using CronQuery.Mvc.Options;

namespace tests.Fakes.Jobs
namespace CronQuery.Tests.Fakes.Jobs
{
public class JobSuccessful : IJob, IDisposable
{
Expand Down
2 changes: 1 addition & 1 deletion src/CronQuery.Tests/Fakes/Jobs/JobWithError.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
using CronQuery.Mvc.Jobs;
using CronQuery.Mvc.Options;

namespace tests.Fakes.Jobs
namespace CronQuery.Tests.Fakes.Jobs
{
public class JobWithError : IJob
{
Expand Down
2 changes: 1 addition & 1 deletion src/CronQuery.Tests/Fakes/LoggerFactoryFake.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

using Microsoft.Extensions.Logging;

namespace tests.Fakes
namespace CronQuery.Tests.Fakes
{
public class LoggerFactoryFake : ILoggerFactory
{
Expand Down
2 changes: 1 addition & 1 deletion src/CronQuery.Tests/Fakes/LoggerFake.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
using System.Collections.Generic;
using Microsoft.Extensions.Logging;

namespace tests.Fakes
namespace CronQuery.Tests.Fakes
{
public class LoggerFake : ILogger
{
Expand Down
2 changes: 1 addition & 1 deletion src/CronQuery.Tests/Fakes/OptionsMonitorFake.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
using CronQuery.Mvc.Options;
using Microsoft.Extensions.Options;

namespace tests.Fakes
namespace CronQuery.Tests.Fakes
{
public class OptionsMonitorFake : IOptionsMonitor<JobRunnerOptions>, IDisposable
{
Expand Down
2 changes: 1 addition & 1 deletion src/CronQuery.Tests/Fakes/ServiceProviderFake.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
using CronQuery.Mvc.Jobs;
using Microsoft.Extensions.DependencyInjection;

namespace tests.Fakes
namespace CronQuery.Tests.Fakes
{
public class ServiceProviderFake : IServiceProvider, IServiceScopeFactory, IServiceScope
{
Expand Down
2 changes: 1 addition & 1 deletion src/CronQuery.Tests/Fakes/TestServerExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;

namespace tests.Fakes
namespace CronQuery.Tests.Fakes
{
public static class TestServerExtensions
{
Expand Down
6 changes: 3 additions & 3 deletions src/CronQuery.Tests/Functional/AppTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@

using System.Threading.Tasks;
using Microsoft.AspNetCore.TestHost;
using tests.Fakes;
using tests.Fakes.Jobs;
using CronQuery.Tests.Fakes;
using CronQuery.Tests.Fakes.Jobs;
using Xunit;

namespace tests.Functional
namespace CronQuery.Tests.Functional
{
public class AppTest
{
Expand Down
2 changes: 1 addition & 1 deletion src/CronQuery.Tests/Functional/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
using System;
using System.IO;

namespace tests.Functional
namespace CronQuery.Tests.Functional
{
public class Program
{
Expand Down
6 changes: 3 additions & 3 deletions src/CronQuery.Tests/Functional/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using tests.Fakes;
using tests.Fakes.Jobs;
using CronQuery.Tests.Fakes;
using CronQuery.Tests.Fakes.Jobs;

namespace tests.Functional
namespace CronQuery.Tests.Functional
{
public class Startup
{
Expand Down
2 changes: 1 addition & 1 deletion src/CronQuery.Tests/Unit/Cron/ComplexExpressionTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
using CronQuery.Cron;
using Xunit;

namespace tests.Unit.Cron
namespace CronQuery.Tests.Unit.Cron
{
public class ComplexExpressionTest
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
using CronQuery.Cron;
using Xunit;

namespace tests.Unit.Cron
namespace CronQuery.Tests.Unit.Cron
{
public class ExpressionWithAsteriskTest
{
Expand Down
2 changes: 1 addition & 1 deletion src/CronQuery.Tests/Unit/Cron/ExpressionWithCommaTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
using CronQuery.Cron;
using Xunit;

namespace tests.Unit.Cron
namespace CronQuery.Tests.Unit.Cron
{
public class ExpressionWithCommaTest
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
using CronQuery.Cron;
using Xunit;

namespace tests.Unit.Cron
namespace CronQuery.Tests.Unit.Cron
{
public class ExpressionWithDashAndSlashAndCommaTest
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
using CronQuery.Cron;
using Xunit;

namespace tests.Unit.Cron
namespace CronQuery.Tests.Unit.Cron
{
public class ExpressionWithDashAndSlashTest
{
Expand Down
2 changes: 1 addition & 1 deletion src/CronQuery.Tests/Unit/Cron/ExpressionWithDashTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
using CronQuery.Cron;
using Xunit;

namespace tests.Unit.Cron
namespace CronQuery.Tests.Unit.Cron
{
public class ExpressionWithDashTest
{
Expand Down
2 changes: 1 addition & 1 deletion src/CronQuery.Tests/Unit/Cron/ExpressionWithDigitTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
using CronQuery.Cron;
using Xunit;

namespace tests.Unit.Cron
namespace CronQuery.Tests.Unit.Cron
{
public class ExpressionWithDigitTest
{
Expand Down
2 changes: 1 addition & 1 deletion src/CronQuery.Tests/Unit/Cron/ExpressionWithHashTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
using CronQuery.Cron;
using Xunit;

namespace tests.Unit.Cron
namespace CronQuery.Tests.Unit.Cron
{
public class ExpressionWithHashTest
{
Expand Down
2 changes: 1 addition & 1 deletion src/CronQuery.Tests/Unit/Cron/ExpressionWithLAndWTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
using CronQuery.Cron;
using Xunit;

namespace tests.Unit.Cron
namespace CronQuery.Tests.Unit.Cron
{
public class ExpressionWithLAndWTest
{
Expand Down
2 changes: 1 addition & 1 deletion src/CronQuery.Tests/Unit/Cron/ExpressionWithLTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
using CronQuery.Cron;
using Xunit;

namespace tests.Unit.Cron
namespace CronQuery.Tests.Unit.Cron
{
public class ExpressionWithLTest
{
Expand Down
2 changes: 1 addition & 1 deletion src/CronQuery.Tests/Unit/Cron/ExpressionWithSlashTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
using CronQuery.Cron;
using Xunit;

namespace tests.Unit.Cron
namespace CronQuery.Tests.Unit.Cron
{
public class ExpressionWithSlashTest
{
Expand Down
2 changes: 1 addition & 1 deletion src/CronQuery.Tests/Unit/Cron/ExpressionWithWTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
using CronQuery.Cron;
using Xunit;

namespace tests.Unit.Cron
namespace CronQuery.Tests.Unit.Cron
{
public class ExpressionWithWTest
{
Expand Down
2 changes: 1 addition & 1 deletion src/CronQuery.Tests/Unit/Cron/InvalidExpressionTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
using CronQuery.Cron;
using Xunit;

namespace tests.Unit.Cron
namespace CronQuery.Tests.Unit.Cron
{
public class InvalidExpressionTest
{
Expand Down
2 changes: 1 addition & 1 deletion src/CronQuery.Tests/Unit/Cron/UnreachableConditionTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
using CronQuery.Cron;
using Xunit;

namespace tests.Unit.Cron
namespace CronQuery.Tests.Unit.Cron
{
public class UnreachableConditionTest
{
Expand Down
2 changes: 1 addition & 1 deletion src/CronQuery.Tests/Unit/Runner/JobIntervalTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
using CronQuery.Mvc.Jobs;
using Xunit;

namespace tests.Unit.Runner
namespace CronQuery.Tests.Unit.Runner
{
public class JobIntervalTest
{
Expand Down
6 changes: 3 additions & 3 deletions src/CronQuery.Tests/Unit/Runner/JobRunnerTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@
using CronQuery.API.Mvc.Jobs;
using CronQuery.Mvc.Jobs;
using Microsoft.Extensions.DependencyInjection;
using tests.Fakes;
using tests.Fakes.Jobs;
using CronQuery.Tests.Fakes;
using CronQuery.Tests.Fakes.Jobs;
using Xunit;

namespace tests.Unit.Runner
namespace CronQuery.Tests.Unit.Runner
{
public class JobRunnerTest
{
Expand Down
2 changes: 1 addition & 1 deletion src/CronQuery.Tests/Unit/Runner/TimeZoneTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
using Xunit;
using Xunit.Abstractions;

namespace tests.Unit.Runner
namespace CronQuery.Tests.Unit.Runner
{
public class TimeZoneTest
{
Expand Down

0 comments on commit e119522

Please sign in to comment.