blob: 2dcfc9c5c4ea4919f511193d606de9a67b34144b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#include "mem_info.h"
#include <library/cpp/testing/unittest/registar.h>
#include "info.h"
class TMemInfoTest: public NUnitTest::TTestBase {
UNIT_TEST_SUITE(TMemInfoTest)
UNIT_TEST(TestMemInfo)
UNIT_TEST_SUITE_END();
void TestMemInfo() {
using namespace NMemInfo;
TMemInfo stats = GetMemInfo();
UNIT_ASSERT(stats.RSS >= NSystemInfo::GetPageSize());
UNIT_ASSERT(stats.VMS >= stats.RSS);
}
};
UNIT_TEST_SUITE_REGISTRATION(TMemInfoTest)
|