Skip to content

Commit

Permalink
Refactor TestPropertyInfo and TestCamera to snake_case
Browse files Browse the repository at this point in the history
  • Loading branch information
adamkewley committed Jul 2, 2024
1 parent aa57d02 commit cfcf212
Show file tree
Hide file tree
Showing 2 changed files with 113 additions and 124 deletions.
4 changes: 2 additions & 2 deletions tests/testoscar/DOM/TestPropertyInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ TEST(PropertyInfo, constructor_throws_exception_if_name_contains_any_ASCII_contr
ASSERT_ANY_THROW({ PropertyInfo(std::string("inner") + c + std::string("usage"), Variant{true}); });
};

constexpr char c_LastControlCharacterInASCII = 0x1F;
for (char c = 0; c <= c_LastControlCharacterInASCII; ++c) {
constexpr char c_last_acii_control_character = 0x1F;
for (char c = 0; c <= c_last_acii_control_character; ++c) {
test(c);
}
test(0x7F); // DEL
Expand Down
Loading

0 comments on commit cfcf212

Please sign in to comment.