File indexing completed on 2024-05-05 17:52:11

0001 #include "test_config.h"
0002 
0003 int main()
0004 {
0005     KLog::setLoggingEnabled(true);
0006     KLog::setStdLoggingEnabled(true);
0007     const auto binaryName = KShimLib::binaryName();
0008     TEST_EQ(binaryName,
0009             (KShimTest::binaryDir() / KSTRING("binaryName_test"s))
0010                     .replace_extension(KShimLib::exeSuffix));
0011     kLog << "End";
0012     return 0;
0013 }