blob: 4c87487f00a14499a3cc88445a311bea00750a15 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*
* test.h
* ------
* Purpose: Unit tests for OpenMPT.
* Notes : We need FAAAAAAAR more unit tests!
* Authors: Olivier Lapicque
* OpenMPT Devs
* The OpenMPT source code is released under the BSD license. Read LICENSE for more details.
*/
#pragma once
#include "openmpt/all/BuildSettings.hpp"
OPENMPT_NAMESPACE_BEGIN
namespace Test {
void DoTests();
} // namespace Test
OPENMPT_NAMESPACE_END
|