mirror of https://github.com/OpenMW/openmw.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
581 B
C++
28 lines
581 B
C++
1 year ago
|
#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);
|
||
|
}
|
||
|
}
|
||
|
}
|