Cheeze/test/TestAll.cpp
DarkSlein d6716df807 Started implementation of saving pre-recording data
Created micTask for noise detection

Installed GoogleTest

Refactored audio module
2024-05-08 18:39:19 +03:00

11 lines
154 B
C++

/*
* TestAll.cpp
*/
#include "gtest/gtest.h"
int main(int argc, char* argv[]) {
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}