Skip to content

Commit 957b01f

Browse files
committedAug 27, 2019
feat: renomeada framework test
1 parent ea4e74a commit 957b01f

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed
 

‎Framework.MessageBroker.Tests/RabbitMQ/Tests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
namespace Framework.MessageBroker.Tests.RabbitMQ
1212
{
13-
public class Tests : BaseTest<Startup>
13+
public class Tests : TestHost<Startup>
1414
{
1515
private readonly IRabbitMQPublisher _publisher;
1616
private readonly IRabbitMQExplorer _rabbitExplorer;

‎Framework.MessageBroker.Tests/Startup.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
namespace Framework.MessageBroker.Tests
88
{
9-
public class Startup : TestStartupBase
9+
public class Startup : TestStartup
1010
{
1111
public override void ConfigureServices(IServiceCollection services, IConfiguration configuration)
1212
{

‎Framework.Test/BaseTest.cs ‎Framework.Test/TestHost.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77

88
namespace Framework.Test
99
{
10-
public abstract class BaseTest<T> where T : TestStartupBase
10+
public abstract class TestHost<T> where T : TestStartup
1111
{
12-
public BaseTest()
12+
public TestHost()
1313
{
1414
//Configuration
1515
var configurationBuilder = new ConfigurationBuilder()

‎Framework.Test/TestStartupBase.cs ‎Framework.Test/TestStartup.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace Framework.Test
55
{
6-
public abstract class TestStartupBase
6+
public abstract class TestStartup
77
{
88
public abstract void ConfigureServices(IServiceCollection services, IConfiguration configuration);
99
}

0 commit comments

Comments
 (0)
Please sign in to comment.