aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/test/SendCounterPacketTests.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/profiling/test/SendCounterPacketTests.hpp')
-rw-r--r--src/profiling/test/SendCounterPacketTests.hpp39
1 files changed, 10 insertions, 29 deletions
diff --git a/src/profiling/test/SendCounterPacketTests.hpp b/src/profiling/test/SendCounterPacketTests.hpp
index 0323f62d80..cae02b064d 100644
--- a/src/profiling/test/SendCounterPacketTests.hpp
+++ b/src/profiling/test/SendCounterPacketTests.hpp
@@ -19,7 +19,6 @@ namespace armnn
namespace profiling
{
-
class MockProfilingConnection : public IProfilingConnection
{
public:
@@ -33,38 +32,20 @@ public:
bool WritePacket(const unsigned char* buffer, uint32_t length) override
{
- return buffer != nullptr && length > 0;
- }
-
- Packet ReadPacket(uint32_t timeout) override { return Packet(); }
-
-private:
- bool m_IsOpen;
-};
-
-class MockWriteProfilingConnection : public IProfilingConnection
-{
-public:
- MockWriteProfilingConnection()
- : m_IsOpen(true)
- {}
-
- bool IsOpen() override { return m_IsOpen; }
-
- void Close() override { m_IsOpen = false; }
+ if (buffer == nullptr || length == 0)
+ {
+ return false;
+ }
- bool WritePacket(const unsigned char* buffer, uint32_t length) override
- {
m_WrittenData.push_back(length);
- return buffer != nullptr && length > 0;
+ return true;
}
Packet ReadPacket(uint32_t timeout) override { return Packet(); }
- std::vector<uint32_t> GetWrittenData()
- {
- return m_WrittenData;
- }
+ const std::vector<uint32_t>& GetWrittenData() const { return m_WrittenData; }
+
+ void Clear() { m_WrittenData.clear(); }
private:
bool m_IsOpen;
@@ -497,8 +478,8 @@ private:
class SendCounterPacketTest : public SendCounterPacket
{
public:
- SendCounterPacketTest(IBufferManager& buffer)
- : SendCounterPacket(buffer)
+ SendCounterPacketTest(ProfilingStateMachine& profilingStateMachine, IBufferManager& buffer)
+ : SendCounterPacket(profilingStateMachine, buffer)
{}
bool CreateDeviceRecordTest(const DevicePtr& device,