From d684e1087bca633f81f32472acea724515b0e718 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sat, 8 Jul 2017 01:11:01 +0300 Subject: Split virtfs1_unittests.cc into many files for reduce memory usage. --- src/unittests/fs/virtfs/virtfs1_basic.cc | 59 ++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 src/unittests/fs/virtfs/virtfs1_basic.cc (limited to 'src/unittests/fs/virtfs/virtfs1_basic.cc') diff --git a/src/unittests/fs/virtfs/virtfs1_basic.cc b/src/unittests/fs/virtfs/virtfs1_basic.cc new file mode 100644 index 000000000..3d8b21877 --- /dev/null +++ b/src/unittests/fs/virtfs/virtfs1_basic.cc @@ -0,0 +1,59 @@ +/* + * The ManaPlus Client + * Copyright (C) 2016-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 . + */ + +#include "unittests/unittests.h" + +#include "fs/files.h" + +#include "fs/virtfs/direntry.h" +#include "fs/virtfs/fs.h" +#include "fs/virtfs/rwops.h" +#include "fs/virtfs/list.h" + +#include "utils/checkutils.h" +#include "utils/delete2.h" +#include "utils/foreach.h" +#include "utils/stringutils.h" + +PRAGMA48(GCC diagnostic push) +PRAGMA48(GCC diagnostic ignored "-Wshadow") +#include +PRAGMA48(GCC diagnostic pop) + +#ifndef UNITTESTS_CATCH +#include +#endif // UNITTESTS_CATCH + +#include "debug.h" + +TEST_CASE("VirtFs1 getEntries", "") +{ + VirtFs::init("."); + REQUIRE(VirtFs::getEntries().empty()); + REQUIRE(VirtFs::searchByRootInternal("test", std::string()) == nullptr); + VirtFs::deinit(); +} + +TEST_CASE("VirtFs1 getBaseDir", "") +{ + VirtFs::init("."); + REQUIRE(VirtFs::getBaseDir() != nullptr); + VirtFs::deinit(); +} -- cgit v1.2.3-70-g09d2