/* Global include for tests. * * Author: Steffen Vogel * SPDX-FileCopyrightText: 2017 Steffen Vogel * SPDX-License-Identifier: Apache-2.0 */ #pragma once #include #include class FpgaState { public: // List of all available FPGA cards, only first will be tested at the moment std::list> cards; }; // Global state to be shared by unittests extern FpgaState state;