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