2017-07-01 21:25:06 +02:00
|
|
|
/* Copyright 2017 Fred Sundvik
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
#include "gmock/gmock.h"
|
|
|
|
|
2017-12-15 00:15:52 +01:00
|
|
|
extern "C" {
|
2017-07-01 21:25:06 +02:00
|
|
|
#include "quantum.h"
|
2017-12-15 00:15:52 +01:00
|
|
|
}
|
2017-07-02 20:46:35 +02:00
|
|
|
#include "test_driver.hpp"
|
2017-07-01 21:25:06 +02:00
|
|
|
#include "test_matrix.h"
|
2017-07-02 20:46:35 +02:00
|
|
|
#include "keyboard_report_util.hpp"
|
2017-12-15 00:15:52 +01:00
|
|
|
#include "test_fixture.hpp"
|