Sfoglia il codice sorgente

Add Unit Tests.

release/3.x.x
Christian 3 anni fa
parent
commit
b103718bd9
1 ha cambiato i file con 14 aggiunte e 0 eliminazioni
  1. +14
    -0
      Tests/MQTTnet.Core.Tests/TopicFilterComparer_Tests.cs

+ 14
- 0
Tests/MQTTnet.Core.Tests/TopicFilterComparer_Tests.cs Vedi File

@@ -6,6 +6,20 @@ namespace MQTTnet.Tests
[TestClass]
public class TopicFilterComparer_Tests
{
[TestMethod]
public void TopicFilterComparer_Plus_Match_With_Separator_Only()
{
//A Topic Name or Topic Filter consisting only of the ‘/’ character is valid
CompareAndAssert("A", "+", true);
}

[TestMethod]
public void TopicFilterComparer_Hash_Match_With_Separator_Only()
{
//A Topic Name or Topic Filter consisting only of the ‘/’ character is valid
CompareAndAssert("/", "#", true);
}

[TestMethod]
public void TopicFilterComparer_DirectMatch()
{


Caricamento…
Annulla
Salva