2
0
mirror of https://github.com/boostorg/test.git synced 2026-01-26 07:02:12 +00:00

*** empty log message ***

[SVN r32457]
This commit is contained in:
Gennadiy Rozental
2006-01-28 07:12:47 +00:00
parent 5140eebc18
commit c6a17564bc
3 changed files with 4 additions and 3 deletions

View File

@@ -26,7 +26,7 @@ validate_and_return_salary( Employee const& e, Ostr& os )
if( e.Title() == "CEO" || e.Salary() > 100000 )
os << e.First() << " " << e.Last() << " is overpaid";
return e.First() + " " + e.Last();
return e.First() + " " + e.Last();
}
//____________________________________________________________________________//
@@ -48,7 +48,7 @@ struct EmpMock : mock_object<> {
BOOST_TEST_EXCEPTION_SAFETY( test_all_exec_path )
{
validate_and_return_salary( EmpMock(), simple_mock );
validate_and_return_salary( EmpMock(), mock_object<>::prototype() );
}
//____________________________________________________________________________//