Created micTask for noise detection Installed GoogleTest Refactored audio module
11 lines
154 B
C++
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();
|
|
}
|