Skip to content

Commit eb03689

Browse files
committed
Merge branch 'master' of https://github.com/gammasoft71/xtd
2 parents da347c7 + f77b4d7 commit eb03689

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/xtd.tunit/include/xtd/tunit/constraints/does_not_value.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,15 @@ namespace xtd {
4040
else xtd::tunit::string_assume::does_not_end_with(expected, actual_value<actual_t>::actual(), message, stack_frame);
4141
return operator_value<actual_t>(self_);
4242
}
43-
43+
4444
template<class expected_t>
4545
auto start_with(const expected_t& expected, const xtd::diagnostics::stack_frame& stack_frame = xtd::diagnostics::stack_frame::current()) const {
4646
if (actual_value<actual_t>::is_assert()) xtd::tunit::string_assert::does_not_start_with(expected, actual_value<actual_t>::actual(), stack_frame);
4747
else if (actual_value<actual_t>::is_valid()) xtd::tunit::string_valid::does_not_start_with(expected, actual_value<actual_t>::actual(), stack_frame);
4848
else xtd::tunit::string_assume::does_not_start_with(expected, actual_value<actual_t>::actual(), stack_frame);
4949
return operator_value<actual_t>(self_);
5050
}
51-
51+
5252
template<class expected_t>
5353
auto start_with(const expected_t& expected, const xtd::string& message, const xtd::diagnostics::stack_frame& stack_frame = xtd::diagnostics::stack_frame::current()) const {
5454
if (actual_value<actual_t>::is_assert()) xtd::tunit::string_assert::does_not_start_with(expected, actual_value<actual_t>::actual(), message, stack_frame);

src/xtd.tunit/include/xtd/tunit/constraints/does_value.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@ namespace xtd {
4242
else xtd::tunit::string_assume::ends_with(expected, actual_value<actual_t>::actual(), message, stack_frame);
4343
return operator_value<actual_t>(self_);
4444
}
45-
45+
4646
template<class expected_t>
4747
auto start_with(const expected_t& expected, const xtd::diagnostics::stack_frame& stack_frame = xtd::diagnostics::stack_frame::current()) const {
4848
if (actual_value<actual_t>::is_assert()) xtd::tunit::string_assert::starts_with(expected, actual_value<actual_t>::actual(), stack_frame);
4949
else if (actual_value<actual_t>::is_valid()) xtd::tunit::string_valid::starts_with(expected, actual_value<actual_t>::actual(), stack_frame);
5050
else xtd::tunit::string_assume::starts_with(expected, actual_value<actual_t>::actual(), stack_frame);
5151
return operator_value<actual_t>(self_);
5252
}
53-
53+
5454
template<class expected_t>
5555
auto start_with(const expected_t& expected, const xtd::string& message, const xtd::diagnostics::stack_frame& stack_frame = xtd::diagnostics::stack_frame::current()) const {
5656
if (actual_value<actual_t>::is_assert()) xtd::tunit::string_assert::starts_with(expected, actual_value<actual_t>::actual(), message, stack_frame);

0 commit comments

Comments
 (0)