| 6 | #include "BaseEncoderTest.h" |
| 7 | |
| 8 | class EncInterfaceCallTest : public ::testing::Test, public BaseEncoderTest { |
| 9 | public: |
| 10 | virtual void SetUp() { |
| 11 | BaseEncoderTest::SetUp(); |
| 12 | }; |
| 13 | virtual void TearDown() { |
| 14 | BaseEncoderTest::TearDown(); |
| 15 | }; |
| 16 | |
| 17 | virtual void onEncodeFrame (const SFrameBSInfo& frameInfo) { |
| 18 | //nothing |
| 19 | } |
| 20 | //testing case |
| 21 | |
| 22 | }; |
| 23 | |
| 24 | |
| 25 | TEST_F (EncInterfaceCallTest, BaseParameterVerify) { |
nothing calls this directly
no outgoing calls
no test coverage detected