-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #333 from DNKpp/feature/DYN_TIMES
add runtime ``TIMES``
- Loading branch information
Showing
8 changed files
with
303 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* | ||
* Trompeloeil C++ mocking framework | ||
* | ||
* Copyright Björn Fahller | ||
* | ||
* Use, modification and distribution is subject to the | ||
* Boost Software License, Version 1.0. (See accompanying | ||
* file LICENSE_1_0.txt or copy at | ||
* http://www.boost.org/LICENSE_1_0.txt) | ||
* | ||
* Project home: https://github.com/rollbear/trompeloeil | ||
*/ | ||
|
||
// pass: Only one RT_TIMES call limit is allowed, but it can express an interval | ||
#include <trompeloeil.hpp> | ||
|
||
struct MS | ||
{ | ||
MAKE_MOCK0(f, int()); | ||
}; | ||
|
||
int main() | ||
{ | ||
MS obj; | ||
|
||
#if (TROMPELOEIL_CPLUSPLUS == 201103L) | ||
|
||
REQUIRE_CALL_V(obj, f(), | ||
.TIMES(AT_LEAST(1)) | ||
.RT_TIMES(AT_MOST(3)) | ||
.RETURN(0)); | ||
|
||
#else /* (TROMPELOEIL_CPLUSPLUS == 201103L) */ | ||
|
||
REQUIRE_CALL(obj, f()) | ||
.TIMES(AT_LEAST(1)) | ||
.RT_TIMES(AT_MOST(3)) | ||
.RETURN(0); | ||
|
||
#endif /* !(TROMPELOEIL_CPLUSPLUS == 201103L) */ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* | ||
* Trompeloeil C++ mocking framework | ||
* | ||
* Copyright Björn Fahller | ||
* | ||
* Use, modification and distribution is subject to the | ||
* Boost Software License, Version 1.0. (See accompanying | ||
* file LICENSE_1_0.txt or copy at | ||
* http://www.boost.org/LICENSE_1_0.txt) | ||
* | ||
* Project home: https://github.com/rollbear/trompeloeil | ||
*/ | ||
|
||
// pass: Only one TIMES call limit is allowed, but it can express an interval | ||
#include <trompeloeil.hpp> | ||
|
||
struct MS | ||
{ | ||
MAKE_MOCK0(f, int()); | ||
}; | ||
|
||
int main() | ||
{ | ||
MS obj; | ||
|
||
#if (TROMPELOEIL_CPLUSPLUS == 201103L) | ||
|
||
REQUIRE_CALL_V(obj, f(), | ||
.RT_TIMES(AT_LEAST(1)) | ||
.TIMES(AT_MOST(3)) | ||
.RETURN(0)); | ||
|
||
#else /* (TROMPELOEIL_CPLUSPLUS == 201103L) */ | ||
|
||
REQUIRE_CALL(obj, f()) | ||
.RT_TIMES(AT_LEAST(1)) | ||
.TIMES(AT_MOST(3)) | ||
.RETURN(0); | ||
|
||
#endif /* !(TROMPELOEIL_CPLUSPLUS == 201103L) */ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* | ||
* Trompeloeil C++ mocking framework | ||
* | ||
* Copyright Björn Fahller | ||
* | ||
* Use, modification and distribution is subject to the | ||
* Boost Software License, Version 1.0. (See accompanying | ||
* file LICENSE_1_0.txt or copy at | ||
* http://www.boost.org/LICENSE_1_0.txt) | ||
* | ||
* Project home: https://github.com/rollbear/trompeloeil | ||
*/ | ||
|
||
// pass: Only one RT_TIMES call limit is allowed, but it can express an interval | ||
#include <trompeloeil.hpp> | ||
|
||
struct MS | ||
{ | ||
MAKE_MOCK0(f, int()); | ||
}; | ||
|
||
int main() | ||
{ | ||
MS obj; | ||
|
||
#if (TROMPELOEIL_CPLUSPLUS == 201103L) | ||
|
||
REQUIRE_CALL_V(obj, f(), | ||
.RT_TIMES(AT_LEAST(1)) | ||
.RT_TIMES(AT_MOST(3)) | ||
.RETURN(0)); | ||
|
||
#else /* (TROMPELOEIL_CPLUSPLUS == 201103L) */ | ||
|
||
REQUIRE_CALL(obj, f()) | ||
.RT_TIMES(AT_LEAST(1)) | ||
.RT_TIMES(AT_MOST(3)) | ||
.RETURN(0); | ||
|
||
#endif /* !(TROMPELOEIL_CPLUSPLUS == 201103L) */ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.