Skip to content

Commit

Permalink
refactor: Remove underscores in test names to conform with the google…
Browse files Browse the repository at this point in the history
  • Loading branch information
unknownv2 committed Oct 20, 2018
1 parent 9f8d834 commit c49e1fb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions msvc/corehook-test/detours_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,14 +80,14 @@ TEST_F(DetoursTest, ShouldFailWhenInstallingMaxHookCount) {
}
}
}
TEST_F(DetoursTest, GetHookBypassAddress_Should_Return_Invalid_Handle_With_Bad_Hook_Handle) {
TEST_F(DetoursTest, GetHookBypassAddressShouldReturnInvalidHandleWithBadHookHandle) {
PVOID *ppHookBypassAddress = nullptr;
EXPECT_EQ(ERROR_INVALID_HANDLE, DetourGetHookBypassAddress(nullptr, &ppHookBypassAddress));
}
TEST_F(DetoursTest, GetHookBypassAddress_Should_Return_Invalid_Handle_With_Bad_Output_Address) {
TEST_F(DetoursTest, GetHookBypassAddressShouldReturnInvalidHandleWithBadOutputAddress) {
HOOK_TRACE_INFO pHandle;
EXPECT_EQ(ERROR_INVALID_PARAMETER, DetourGetHookBypassAddress(&pHandle, nullptr));
}
TEST_F(DetoursTest, GetHookBypassAddress_Should_Return_Invalid_Handle_With_Bad_Hook_Handle_and_Output_Address) {
TEST_F(DetoursTest, GetHookBypassAddressShouldReturnInvalidHandleWithBadHookHandleandOutputAddress) {
EXPECT_EQ(ERROR_INVALID_HANDLE, DetourGetHookBypassAddress(nullptr, nullptr));
}

0 comments on commit c49e1fb

Please sign in to comment.