QRCodeLibrary/tests/main_tests.cpp
dm1sh d9f9a26bde
Fixed error correction bytes number to write in final bytes array
Added exclipt size_t to unsigned conversion
Fixed google test in Visual Studio
2021-12-21 15:00:26 +03:00

9 lines
141 B
C++

#include "pch.h"
int main(int argc, char **argv)
{
::testing::InitGoogleTest(&argc, argv);
int ret = RUN_ALL_TESTS();
return ret;
}