aboutsummaryrefslogtreecommitdiffstats
path: root/util/system/rusage_ut.cpp
blob: 8ebd805ec788b760263eff07cc0e2de0ab8b2c24 (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();
    }
}