aboutsummaryrefslogtreecommitdiffstats
path: root/util/system/getpid_ut.cpp
blob: 149e7f20820d9db1ef666e421707f39654384012 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "getpid.h" 
 
#include <library/cpp/testing/unittest/registar.h>
 
class TGetPidTest: public TTestBase { 
    UNIT_TEST_SUITE(TGetPidTest); 
    UNIT_TEST(Test); 
    UNIT_TEST_SUITE_END(); 
 
public: 
    void Test(); 
}; 
 
UNIT_TEST_SUITE_REGISTRATION(TGetPidTest); 
 
void TGetPidTest::Test() { 
    const TProcessId pid = GetPID();
    UNIT_ASSERT(pid != 0); 
}