blob: 0d4e0fe54b4f8c9f71b761ff2086e344994c90f0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#include "rusage.h"
#include <library/cpp/testing/unittest/registar.h>
Y_UNIT_TEST_SUITE(TRusageTest) {
Y_UNIT_TEST(TestRusage) {
TRusage r;
// just check it returns something
r.Fill();
}
}
|