17 lines
680 B
C++
17 lines
680 B
C++
/**
|
|
******************************************************************************
|
|
* Xenia : Xbox 360 Emulator Research Project *
|
|
******************************************************************************
|
|
* Copyright 2015 Ben Vanik. All rights reserved. *
|
|
* Released under the BSD license - see LICENSE in the root for more details. *
|
|
******************************************************************************
|
|
*/
|
|
|
|
#include "third_party/catch/include/catch.hpp"
|
|
#include "xenia/base/memory.h"
|
|
|
|
TEST_CASE("copy_and_swap_16_aligned", "Copy and Swap") {
|
|
// TODO(benvanik): tests.
|
|
REQUIRE(true == true);
|
|
}
|