[string] Add base string tests

This commit is contained in:
Sandy Carter 2019-01-20 21:28:17 -05:00
parent 60fea32f52
commit 6c58b3b13d
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
/**
******************************************************************************
* Xenia : Xbox 360 Emulator Research Project *
******************************************************************************
* Copyright 2019 Ben Vanik. All rights reserved. *
* Released under the BSD license - see LICENSE in the root for more details. *
******************************************************************************
*/
#include "xenia/base/string.h"
#include "third_party/catch/include/catch.hpp"
namespace xe {
namespace base {
namespace test {
TEST_CASE("StringBuffer") {
// TODO(bwrsandman):
REQUIRE(false);
}
} // namespace test
} // namespace base
} // namespace xe