-
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
Showing
2 changed files
with
11 additions
and
9 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 |
---|---|---|
|
@@ -9,8 +9,10 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Set up CMake, Ninja, and MSVC | ||
uses: lukka/[email protected] | ||
- name: Set up CMake | ||
uses: actions/setup-cmake@v1 | ||
with: | ||
cmake-version: '3.26' | ||
|
||
- name: Configure CMake | ||
# sqlite3 handled by CMake | ||
|
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 |
---|---|---|
@@ -1,16 +1,16 @@ | ||
/** | ||
* @file main.cpp | ||
* @brief Test driver. | ||
* @detailed The test driver. Through its associated tests, this driver aims to exercise all | ||
* of the functionality of the AppTracker, AppEntry, and DatabaseManager classes in a clear and | ||
* consistent way so that the class's interface and implementation can be easily inferred. | ||
* @detailed The test driver. Through its associated tests, this driver aims to | ||
* exercise all of the functionality of the AppTracker, AppEntry, and | ||
* DatabaseManager classes in a clear and consistent way so that the class's | ||
* interface and implementation can be easily inferred. | ||
* @author Syed Ali | ||
*/ | ||
|
||
#include <gtest/gtest.h> | ||
|
||
int main(int argc, char** argv) | ||
{ | ||
::testing::InitGoogleTest(&argc, argv); | ||
return RUN_ALL_TESTS(); | ||
int main(int argc, char **argv) { | ||
::testing::InitGoogleTest(&argc, argv); | ||
return RUN_ALL_TESTS(); | ||
} |