Rename some test names for consistency

This commit is contained in:
Alexey Rybalchenko
2019-03-04 13:46:41 +01:00
committed by Dennis Klein
parent f191c5099c
commit 5af604c0a9
23 changed files with 146 additions and 146 deletions

View File

@@ -55,13 +55,13 @@ auto RunPubSub(string transport) -> void
exit(pub.exit_code + sub1.exit_code + sub2.exit_code);
}
TEST(PubSub, ZeroMQ)
TEST(PubSub, zeromq)
{
EXPECT_EXIT(RunPubSub("zeromq"), ::testing::ExitedWithCode(0), "PUB-SUB test successfull");
}
#ifdef BUILD_NANOMSG_TRANSPORT
TEST(PubSub, Nanomsg)
TEST(PubSub, nanomsg)
{
EXPECT_EXIT(RunPubSub("nanomsg"), ::testing::ExitedWithCode(0), "PUB-SUB test successfull");
}