blob: 11af7dd64cd4bc8f39a4f506299749034f6e584f (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#pragma once
#include <gtest/gtest.h>
class TGMockTestEventListener: public testing::EmptyTestEventListener {
public:
void OnTestPartResult(const testing::TestPartResult& result) override;
};
|