blob: 9ef15e015f67dfd410dc45e04299fb9e392385d9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "compat.h"
#include <library/cpp/testing/unittest/registar.h>
#include <util/folder/dirut.h>
#include <util/stream/output.h>
Y_UNIT_TEST_SUITE(TCompatTest) {
Y_UNIT_TEST(TestGetprogname) {
getprogname(); // just check it links
}
}
|