Warning, file /sdk/kshim/tests/binaryName_test.cpp was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

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 }