blob: ef73d48eb32304f7f0e007a00e90fb9408925497 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <library/cpp/testing/unittest/registar.h>
namespace NKikimr {
namespace NPDisk {
extern const ui64 YdbDefaultPDiskSequence;
}
Y_UNIT_TEST_SUITE(TYndxKeysDefaultKeyTest) {
Y_UNIT_TEST(Smoke) {
UNIT_ASSERT(NPDisk::YdbDefaultPDiskSequence != 0);
}
}
}
|