diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-05-18 20:14:01 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-05-18 20:14:01 +0300 |
commit | dffd0a4a8e99196ad27f8fde2430b09dd29cac57 (patch) | |
tree | c9e4b9401844577805731686448a33bba1f10c2d /src/test/unittests.h | |
parent | 7b3cf825ebf4f87cb6b1bf7c0a2107c4b2774766 (diff) | |
download | manaverse-dffd0a4a8e99196ad27f8fde2430b09dd29cac57.tar.gz manaverse-dffd0a4a8e99196ad27f8fde2430b09dd29cac57.tar.bz2 manaverse-dffd0a4a8e99196ad27f8fde2430b09dd29cac57.tar.xz manaverse-dffd0a4a8e99196ad27f8fde2430b09dd29cac57.zip |
Move catch.hpp into test directory.
Also replace include catch.hpp into generic unittests.h
Diffstat (limited to 'src/test/unittests.h')
-rw-r--r-- | src/test/unittests.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/test/unittests.h b/src/test/unittests.h new file mode 100644 index 000000000..18b371ebf --- /dev/null +++ b/src/test/unittests.h @@ -0,0 +1,26 @@ +/* + * The ManaPlus Client + * Copyright (C) 2017 The ManaPlus Developers + * + * This file is part of The ManaPlus Client. + * + * 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 + * 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/>. + */ + +#ifndef UNITTESTS_H +#define UNITTESTS_H + +#include "test/catch.hpp" + +#endif // UNITTESTS_H |