blob: e7122a2971a238fa6b7ccba61be20109d51cb9f4 (
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);
}
 |