AusweisApp2/test/helper/MockReaderConfiguration.h

28 lines
441 B
C
Raw Permalink Normal View History

2017-12-20 14:54:05 +01:00
/*!
* \brief ReaderConfigurationFile mock for tests
*
2019-05-22 10:08:38 +02:00
* \copyright Copyright (c) 2017-2019 Governikus GmbH & Co. KG, Germany
2017-12-20 14:54:05 +01:00
*/
#pragma once
#include "ReaderConfiguration.h"
namespace governikus
{
class MockReaderConfiguration
: public ReaderConfiguration
{
Q_OBJECT
public:
MockReaderConfiguration() = default;
virtual ~MockReaderConfiguration() = default;
void clearReaderConfiguration();
};
2019-01-03 15:06:22 +01:00
} // namespace governikus