You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
///<param name="captures">The captured value of wildcard within the input value. The number of captures matches the number of wildcard in the pattern.</param>
@@ -60,7 +60,7 @@ namespace bin2cpp
60
60
/// -'[charlist]' matches any character in the provided set.
61
61
/// -'[a-z]', '[A-Z]', '[0-9]' match characters in respective ranges.
62
62
/// -'[a-zA-Z0-9]' matches any alphanumeric character.
63
-
///< / remarks>
63
+
///</remarks>
64
64
///<param name="value">The file path, value or string to match.</param>
ASSERT_EQ(actual_result, t.expected_result) << "Test fail with test_values[" << i << "]. The match between value '" << t.value << "' and pattern '" << t.pattern << "' is supposed to return '" << to_boolean_str(t.expected_result) << "' but it actually retuned '" << to_boolean_str(actual_result) << "'.";
111
111
ASSERT_EQ(actual_captures, t.expected_captures) << "Test fail with test_values[" << i << "]. The match between value '" << t.value << "' and pattern '" << t.pattern << "' is has returned '" << to_boolean_str(t.expected_result) << "' but the expected captures does not match.";
0 commit comments