-
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.
- Loading branch information
1 parent
b022661
commit 0f65933
Showing
4 changed files
with
32 additions
and
3 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
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,22 @@ | ||
// ======================================================================================================== | ||
// _______ _______ ______ ___ ___ _______ _______ | ||
// | | | _ | __ \ | |_ _| | | | ||
// | | | < | |_| |_| | | ||
// |__|_|__|___|___|___|__|\_____/|_______|__|____| | ||
// | ||
// This file is part of the Marvin open source library and is licensed under the terms of the MIT License. | ||
// | ||
// ======================================================================================================== | ||
|
||
#include <marvin/utils/marvin_Utils.h> | ||
#include <catch2/catch_test_macros.hpp> | ||
#include <catch2/matchers/catch_matchers_floating_point.hpp> | ||
#include <iostream> | ||
namespace marvin::testing { | ||
TEST_CASE("Test getCurrentExecutablePath()") { | ||
const auto pathRes = utils::getCurrentExecutablePath(); | ||
REQUIRE(pathRes); | ||
std::cout << *pathRes << "\n"; | ||
} | ||
|
||
} |