test.h 312 B

12345678910111213
  1. #pragma once
  2. #include <library/cpp/messagebus/rain_check/core/rain_check.h>
  3. #include <library/cpp/messagebus/misc/test_sync.h>
  4. template <typename TSelf>
  5. struct TTestEnvTemplate: public NRainCheck::TSimpleEnvTemplate<TSelf> {
  6. TTestSync TestSync;
  7. };
  8. struct TTestEnv: public TTestEnvTemplate<TTestEnv> {
  9. };