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