blob: 922f0f06cb5dd1ef3efd13e5233077601307cd02 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include <library/cpp/messagebus/rain_check/core/rain_check.h>
#include <library/cpp/messagebus/misc/test_sync.h>
template <typename TSelf>
struct TTestEnvTemplate: public NRainCheck::TSimpleEnvTemplate<TSelf> {
TTestSync TestSync;
};
struct TTestEnv: public TTestEnvTemplate<TTestEnv> {
};
|