Skip to content

Commit

Permalink
Fixed ServerLowLevel tests not running
Browse files Browse the repository at this point in the history
JUnit only runs tests in classes that have a name that ends in Test,
the class in question had a name that ended in Tests, with an added s.
As a result, the tests in this class were never executed. This renames
the class to not have the added s.
  • Loading branch information
hylkevds committed Feb 18, 2021
1 parent 3e7917a commit a9f5c24
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@
import static java.nio.charset.StandardCharsets.UTF_8;
import static org.junit.jupiter.api.Assertions.*;

public class ServerLowlevelMessagesIntegrationTests {
public class ServerLowlevelMessagesIntegrationTest {

private static final Logger LOG = LoggerFactory.getLogger(ServerLowlevelMessagesIntegrationTests.class);
private static final Logger LOG = LoggerFactory.getLogger(ServerLowlevelMessagesIntegrationTest.class);
static MqttClientPersistence s_dataStore;
Server m_server;
Client m_client;
Expand Down

0 comments on commit a9f5c24

Please sign in to comment.