mirror of
https://github.com/mat007/turtle.git
synced 2026-06-22 12:13:43 +00:00
Fixed alignement
This commit is contained in:
parent
15285a22ec
commit
58b5e55bb5
1 changed files with 9 additions and 9 deletions
|
|
@ -406,9 +406,9 @@ Constraints :
|
|||
|
||||
retrieves ['actual] address into ['expected] using operator =]]
|
||||
[[mock::contain( ['expected] )] [['actual].find( ['expected] ) != std::string::npos] [checks whether ['expected] is contained in the std::string ['actual]]]
|
||||
[[mock::affirm] [['actual]] [uses ['actual] as a boolean]]
|
||||
[[mock::affirm] [['actual]] [uses ['actual] as a ['bool]]]
|
||||
[[mock::negate] [! ['actual]] [negates ['actual] using operator !]]
|
||||
[[mock::evaluate] [['actual]()] [evaluates ['actual] as a functor returning a bool and taking no argument]]
|
||||
[[mock::evaluate] [['actual]()] [evaluates ['actual] as a functor returning a ['bool] and taking no argument]]
|
||||
]
|
||||
|
||||
[important When passing ['expected] directly as a shortcut mock::call is implied for a function, a function pointer, an instance of a type with a result_type member typedef (support for standard library, [@http://www.boost.org/libs/bind/bind.html Boost.Bind], [@http://www.boost.org/libs/function Boost.Function] functors), an instance of a type with a sig member (support for [@http://www.boost.org/libs/lambda Boost.Lambda] functors), an instance of a type with a result member (support for [@http://www.boost.org/libs/phoenix Boost.Phoenix] functors); mock::equal is implied for anything else.]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue