Pārlūkot izejas kodu

update unit tests.

master
Savorboard pirms 7 gadiem
vecāks
revīzija
6f0ab0b4cb
1 mainītis faili ar 25 papildinājumiem un 0 dzēšanām
  1. +25
    -0
      test/DotNetCore.CAP.Test/CAP.BuilderTest.cs

+ 25
- 0
test/DotNetCore.CAP.Test/CAP.BuilderTest.cs Parādīt failu

@@ -61,6 +61,26 @@ namespace DotNetCore.CAP.Test


private class MyProducerService : ICapPublisher private class MyProducerService : ICapPublisher
{ {
public void Publish(string name, string content)
{
throw new NotImplementedException();
}

public void Publish<T>(string name, T contentObj)
{
throw new NotImplementedException();
}

public void Publish(string name, string content, IDbConnection dbConnection, IDbTransaction dbTransaction = null)
{
throw new NotImplementedException();
}

public void Publish<T>(string name, T contentObj, IDbConnection dbConnection, IDbTransaction dbTransaction = null)
{
throw new NotImplementedException();
}

public Task PublishAsync(string topic, string content) public Task PublishAsync(string topic, string content)
{ {
throw new NotImplementedException(); throw new NotImplementedException();
@@ -80,6 +100,11 @@ namespace DotNetCore.CAP.Test
{ {
throw new NotImplementedException(); throw new NotImplementedException();
} }

public Task PublishAsync<T>(string name, T contentObj, IDbConnection dbConnection, IDbTransaction dbTransaction = null)
{
throw new NotImplementedException();
}
} }
} }
} }

Notiek ielāde…
Atcelt
Saglabāt