aboutsummaryrefslogtreecommitdiffstats
path: root/util/system/progname_ut.cpp
blob: 6c2709e26e322ad4f351aa8a107092fbcd9596ca (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;
        }
    }
}