-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Class method call for all task added
- Loading branch information
1 parent
e9196f2
commit a528fca
Showing
20 changed files
with
911 additions
and
282 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -36,6 +36,7 @@ include(Catch) | |
|
||
set(HEADERS | ||
src/common.h | ||
src/constants.h | ||
src/test_funcs.h | ||
src/test_struct.h | ||
) | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/****************************************************************************** | ||
** | ||
** Copyright (C) 2023 Ivan Pinezhaninov <ivan.pinezhaninov@gmail.com> | ||
** | ||
** This file is part of the async_promise - which can be found at | ||
** https://github.com/IvanPinezhaninov/async_promise/. | ||
** | ||
** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
** IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
** FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. | ||
** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, | ||
** DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR | ||
** OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR | ||
** THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
** | ||
******************************************************************************/ | ||
|
||
#ifndef CONSTANTS_H | ||
#define CONSTANTS_H | ||
|
||
static constexpr auto aggregate_error_message = "All functions rejected"; | ||
static constexpr auto str1 = "Hello World!"; | ||
static constexpr auto str2 = "Hello Universe!"; | ||
|
||
#endif // CONSTANTS_H |
Oops, something went wrong.