Commit d2093f3c authored by Savorboard's avatar Savorboard

Fix build errorFix unit tests

parent cf382999
......@@ -63,7 +63,6 @@ namespace DotNetCore.CAP.Test
[InlineData("Candidates.Asterisk.AAA")]
[InlineData("AAA.BBB.CCC.Asterisk")]
[InlineData("aaa.BBB.ccc.Asterisk")]
[InlineData("Asterisk.aaa.bbb")]
public void CanNotFindAsteriskTopic(string topic)
{
var selector = _provider.GetRequiredService<IConsumerServiceSelector>();
......@@ -73,6 +72,17 @@ namespace DotNetCore.CAP.Test
Assert.Null(bestCandidates);
}
[Theory]
[InlineData("Asterisk.aaa.bbb")]
public void CanNotFindAsteriskTopic2(string topic)
{
var selector = _provider.GetRequiredService<IConsumerServiceSelector>();
var candidates = selector.SelectCandidates();
var bestCandidates = selector.SelectBestCandidate(topic, candidates);
Assert.Null(bestCandidates);
}
[Theory]
[InlineData("Candidates.Pound.AAA")]
[InlineData("Candidates.Pound.AAA.BBB")]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment