File tree 4 files changed +5
-5
lines changed
Framework.MessageBroker.Tests
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 10
10
11
11
namespace Framework . MessageBroker . Tests . RabbitMQ
12
12
{
13
- public class Tests : BaseTest < Startup >
13
+ public class Tests : TestHost < Startup >
14
14
{
15
15
private readonly IRabbitMQPublisher _publisher ;
16
16
private readonly IRabbitMQExplorer _rabbitExplorer ;
Original file line number Diff line number Diff line change 6
6
7
7
namespace Framework . MessageBroker . Tests
8
8
{
9
- public class Startup : TestStartupBase
9
+ public class Startup : TestStartup
10
10
{
11
11
public override void ConfigureServices ( IServiceCollection services , IConfiguration configuration )
12
12
{
Original file line number Diff line number Diff line change 7
7
8
8
namespace Framework . Test
9
9
{
10
- public abstract class BaseTest < T > where T : TestStartupBase
10
+ public abstract class TestHost < T > where T : TestStartup
11
11
{
12
- public BaseTest ( )
12
+ public TestHost ( )
13
13
{
14
14
//Configuration
15
15
var configurationBuilder = new ConfigurationBuilder ( )
Original file line number Diff line number Diff line change 3
3
4
4
namespace Framework . Test
5
5
{
6
- public abstract class TestStartupBase
6
+ public abstract class TestStartup
7
7
{
8
8
public abstract void ConfigureServices ( IServiceCollection services , IConfiguration configuration ) ;
9
9
}
You can’t perform that action at this time.
0 commit comments