aboutsummaryrefslogtreecommitdiffstats
path: root/util/system/progname_ut.cpp
blob: 08111984a00ac11e81724f009c23e02466a544b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "progname.h" 
 
#include <library/cpp/testing/unittest/registar.h>
 
Y_UNIT_TEST_SUITE(TProgramNameTest) {
    Y_UNIT_TEST(TestIt) {
        TString progName = GetProgramName();
 
        try { 
            UNIT_ASSERT(
                progName.find("ut_util") != TString::npos || progName.find("util-system_ut") != TString::npos || progName.find("util-system-ut") != TString::npos);
        } catch (...) { 
            Cerr << progName << Endl; 
 
            throw; 
        } 
    } 
}