| 10 | #include <util/random/mersenne.h> |
| 11 | |
| 12 | static TString JoinWithNewline(const TVector<TString>& strings) { |
| 13 | TStringStream ss; |
| 14 | for (const auto& string : strings) { |
| 15 | ss << string << "\n"; |
| 16 | } |
| 17 | return ss.Str(); |
| 18 | } |
| 19 | |
| 20 | class TDirIteratorTest: public TTestBase { |
| 21 | UNIT_TEST_SUITE(TDirIteratorTest); |