mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-28 18:18:52 +00:00
7d1cd11ba9
To avoid duplicated compilation for openmw translation units. Link openmw-lib to openmw-tests instead.
28 lines
581 B
C++
28 lines
581 B
C++
#include <components/esm3/infoorder.hpp>
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
namespace ESM
|
|
{
|
|
namespace
|
|
{
|
|
struct Value
|
|
{
|
|
RefId mId;
|
|
RefId mPrev;
|
|
|
|
Value() = default;
|
|
Value(const Value&) = delete;
|
|
Value(Value&&) = default;
|
|
Value& operator=(const Value&) = delete;
|
|
Value& operator=(Value&&) = default;
|
|
};
|
|
|
|
TEST(Esm3InfoOrderTest, insertInfoShouldNotCopyValue)
|
|
{
|
|
InfoOrder<Value> order;
|
|
order.insertInfo(Value{}, false);
|
|
}
|
|
}
|
|
}
|