2017-08-11 15:24:17 +08:00
|
|
|
#define SOL_CHECK_ARGUMENTS 1
|
2017-09-29 07:07:33 +08:00
|
|
|
#define SOL_ENABLE_INTEROP 1
|
2016-08-26 00:50:50 +08:00
|
|
|
|
|
|
|
#include <sol.hpp>
|
2017-08-11 15:24:17 +08:00
|
|
|
|
2016-08-26 00:50:50 +08:00
|
|
|
#include <catch.hpp>
|
|
|
|
|
2017-08-11 15:24:17 +08:00
|
|
|
#include <algorithm>
|
|
|
|
#include <numeric>
|
|
|
|
#include <iostream>
|
2016-08-26 00:50:50 +08:00
|
|
|
|
2017-08-11 15:24:17 +08:00
|
|
|
TEST_CASE("operators/default", "test that generic equality operators and all sorts of equality tests can be used") {
|
2016-08-26 00:50:50 +08:00
|
|
|
struct T {};
|
|
|
|
struct U {
|
|
|
|
int a;
|
2017-09-17 02:18:45 +08:00
|
|
|
U(int x = 20)
|
|
|
|
: a(x) {
|
|
|
|
}
|
2016-08-26 00:50:50 +08:00
|
|
|
bool operator==(const U& r) {
|
|
|
|
return a == r.a;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
struct V {
|
|
|
|
int a;
|
2017-09-17 02:18:45 +08:00
|
|
|
V(int x = 20)
|
|
|
|
: a(x) {
|
|
|
|
}
|
2016-08-26 00:50:50 +08:00
|
|
|
bool operator==(const V& r) const {
|
|
|
|
return a == r.a;
|
|
|
|
}
|
|
|
|
};
|
2017-08-11 15:24:17 +08:00
|
|
|
|
|
|
|
sol::state lua;
|
|
|
|
lua.open_libraries(sol::lib::base);
|
2016-08-26 00:50:50 +08:00
|
|
|
|
|
|
|
T t1;
|
|
|
|
T& t2 = t1;
|
|
|
|
T t3;
|
|
|
|
U u1;
|
|
|
|
U u2{ 30 };
|
|
|
|
U u3;
|
|
|
|
U v1;
|
|
|
|
U v2{ 30 };
|
|
|
|
U v3;
|
|
|
|
lua["t1"] = &t1;
|
|
|
|
lua["t2"] = &t2;
|
|
|
|
lua["t3"] = &t3;
|
|
|
|
lua["u1"] = &u1;
|
|
|
|
lua["u2"] = &u2;
|
|
|
|
lua["u3"] = &u3;
|
|
|
|
lua["v1"] = &v1;
|
|
|
|
lua["v2"] = &v2;
|
|
|
|
lua["v3"] = &v3;
|
|
|
|
|
2017-08-22 03:25:43 +08:00
|
|
|
SECTION("plain") {
|
|
|
|
// Can only compare identity here
|
|
|
|
REQUIRE_NOTHROW([&] {
|
|
|
|
lua.safe_script("assert(t1 == t1)");
|
|
|
|
lua.safe_script("assert(t2 == t2)");
|
|
|
|
lua.safe_script("assert(t3 == t3)");
|
|
|
|
}());
|
|
|
|
REQUIRE_NOTHROW([&] {
|
|
|
|
lua.safe_script("assert(t1 == t2)");
|
|
|
|
lua.safe_script("assert(not (t1 == t3))");
|
|
|
|
lua.safe_script("assert(not (t2 == t3))");
|
|
|
|
}());
|
|
|
|
// Object should compare equal to themselves
|
|
|
|
// (and not invoke operator==; pointer test should be sufficient)
|
|
|
|
REQUIRE_NOTHROW([&] {
|
|
|
|
lua.safe_script("assert(u1 == u1)");
|
|
|
|
lua.safe_script("assert(u2 == u2)");
|
|
|
|
lua.safe_script("assert(u3 == u3)");
|
|
|
|
}());
|
|
|
|
REQUIRE_NOTHROW([&] {
|
|
|
|
lua.safe_script("assert(not (u1 == u2))");
|
|
|
|
lua.safe_script("assert(u1 == u3)");
|
|
|
|
lua.safe_script("assert(not (u2 == u3))");
|
|
|
|
}());
|
|
|
|
// Object should compare equal to themselves
|
|
|
|
// (and not invoke operator==; pointer test should be sufficient)
|
|
|
|
REQUIRE_NOTHROW([&] {
|
|
|
|
lua.safe_script("assert(v1 == v1)");
|
|
|
|
lua.safe_script("assert(v2 == v2)");
|
|
|
|
lua.safe_script("assert(v3 == v3)");
|
|
|
|
}());
|
|
|
|
REQUIRE_NOTHROW([&] {
|
|
|
|
lua.safe_script("assert(not (v1 == v2))");
|
|
|
|
lua.safe_script("assert(v1 == v3)");
|
|
|
|
lua.safe_script("assert(not (v2 == v3))");
|
|
|
|
}());
|
|
|
|
}
|
2017-08-11 15:24:17 +08:00
|
|
|
SECTION("regular") {
|
|
|
|
lua.new_usertype<T>("T");
|
|
|
|
lua.new_usertype<U>("U");
|
|
|
|
lua.new_usertype<V>("V");
|
|
|
|
|
|
|
|
// Can only compare identity here
|
|
|
|
REQUIRE_NOTHROW([&] {
|
2017-08-22 03:25:43 +08:00
|
|
|
lua.safe_script("assert(t1 == t1)");
|
|
|
|
lua.safe_script("assert(t2 == t2)");
|
|
|
|
lua.safe_script("assert(t3 == t3)");
|
2017-08-11 15:24:17 +08:00
|
|
|
}());
|
|
|
|
REQUIRE_NOTHROW([&] {
|
2017-08-22 03:25:43 +08:00
|
|
|
lua.safe_script("assert(t1 == t2)");
|
|
|
|
lua.safe_script("assert(not (t1 == t3))");
|
|
|
|
lua.safe_script("assert(not (t2 == t3))");
|
2017-08-11 15:24:17 +08:00
|
|
|
}());
|
|
|
|
// Object should compare equal to themselves
|
|
|
|
// (and not invoke operator==; pointer test should be sufficient)
|
|
|
|
REQUIRE_NOTHROW([&] {
|
2017-08-22 03:25:43 +08:00
|
|
|
lua.safe_script("assert(u1 == u1)");
|
|
|
|
lua.safe_script("assert(u2 == u2)");
|
|
|
|
lua.safe_script("assert(u3 == u3)");
|
2017-08-11 15:24:17 +08:00
|
|
|
}());
|
|
|
|
REQUIRE_NOTHROW([&] {
|
2017-08-22 03:25:43 +08:00
|
|
|
lua.safe_script("assert(not (u1 == u2))");
|
|
|
|
lua.safe_script("assert(u1 == u3)");
|
|
|
|
lua.safe_script("assert(not (u2 == u3))");
|
2017-08-11 15:24:17 +08:00
|
|
|
}());
|
|
|
|
// Object should compare equal to themselves
|
|
|
|
// (and not invoke operator==; pointer test should be sufficient)
|
|
|
|
REQUIRE_NOTHROW([&] {
|
2017-08-22 03:25:43 +08:00
|
|
|
lua.safe_script("assert(v1 == v1)");
|
|
|
|
lua.safe_script("assert(v2 == v2)");
|
|
|
|
lua.safe_script("assert(v3 == v3)");
|
2017-08-11 15:24:17 +08:00
|
|
|
}());
|
|
|
|
REQUIRE_NOTHROW([&] {
|
2017-08-22 03:25:43 +08:00
|
|
|
lua.safe_script("assert(not (v1 == v2))");
|
|
|
|
lua.safe_script("assert(v1 == v3)");
|
|
|
|
lua.safe_script("assert(not (v2 == v3))");
|
2017-08-11 15:24:17 +08:00
|
|
|
}());
|
|
|
|
}
|
|
|
|
SECTION("simple") {
|
|
|
|
lua.new_simple_usertype<T>("T");
|
|
|
|
lua.new_simple_usertype<U>("U");
|
|
|
|
lua.new_simple_usertype<V>("V");
|
|
|
|
|
|
|
|
// Can only compare identity here
|
|
|
|
REQUIRE_NOTHROW([&] {
|
2017-08-22 03:25:43 +08:00
|
|
|
lua.safe_script("assert(t1 == t1)");
|
|
|
|
lua.safe_script("assert(t2 == t2)");
|
|
|
|
lua.safe_script("assert(t3 == t3)");
|
2017-08-11 15:24:17 +08:00
|
|
|
}());
|
|
|
|
REQUIRE_NOTHROW([&] {
|
2017-08-22 03:25:43 +08:00
|
|
|
lua.safe_script("assert(t1 == t2)");
|
|
|
|
lua.safe_script("assert(not (t1 == t3))");
|
|
|
|
lua.safe_script("assert(not (t2 == t3))");
|
2017-08-11 15:24:17 +08:00
|
|
|
}());
|
|
|
|
// Object should compare equal to themselves
|
|
|
|
// (and not invoke operator==; pointer test should be sufficient)
|
|
|
|
REQUIRE_NOTHROW([&] {
|
2017-08-22 03:25:43 +08:00
|
|
|
lua.safe_script("assert(u1 == u1)");
|
|
|
|
lua.safe_script("assert(u2 == u2)");
|
|
|
|
lua.safe_script("assert(u3 == u3)");
|
2017-08-11 15:24:17 +08:00
|
|
|
}());
|
|
|
|
REQUIRE_NOTHROW([&] {
|
2017-08-22 03:25:43 +08:00
|
|
|
lua.safe_script("assert(not (u1 == u2))");
|
|
|
|
lua.safe_script("assert(u1 == u3)");
|
|
|
|
lua.safe_script("assert(not (u2 == u3))");
|
2017-08-11 15:24:17 +08:00
|
|
|
}());
|
|
|
|
// Object should compare equal to themselves
|
|
|
|
// (and not invoke operator==; pointer test should be sufficient)
|
|
|
|
REQUIRE_NOTHROW([&] {
|
2017-08-22 03:25:43 +08:00
|
|
|
lua.safe_script("assert(v1 == v1)");
|
|
|
|
lua.safe_script("assert(v2 == v2)");
|
|
|
|
lua.safe_script("assert(v3 == v3)");
|
2017-08-11 15:24:17 +08:00
|
|
|
}());
|
|
|
|
REQUIRE_NOTHROW([&] {
|
2017-08-22 03:25:43 +08:00
|
|
|
lua.safe_script("assert(not (v1 == v2))");
|
|
|
|
lua.safe_script("assert(v1 == v3)");
|
|
|
|
lua.safe_script("assert(not (v2 == v3))");
|
2017-08-11 15:24:17 +08:00
|
|
|
}());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE("operators/call", "test call operator generation") {
|
|
|
|
struct callable {
|
2017-09-17 02:18:45 +08:00
|
|
|
int operator()(int a, std::string b) {
|
2017-08-22 03:25:43 +08:00
|
|
|
return a + static_cast<int>(b.length());
|
2017-08-11 15:24:17 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
sol::state lua;
|
|
|
|
lua.open_libraries(sol::lib::base);
|
|
|
|
|
2017-08-22 03:25:43 +08:00
|
|
|
SECTION("plain") {
|
|
|
|
{
|
|
|
|
lua.set("obj", callable());
|
|
|
|
lua.safe_script("v = obj(2, 'bark woof')");
|
|
|
|
int v = lua["v"];
|
|
|
|
REQUIRE(v == 11);
|
|
|
|
}
|
|
|
|
}
|
2017-08-11 15:24:17 +08:00
|
|
|
SECTION("regular") {
|
|
|
|
lua.new_usertype<callable>("callable");
|
|
|
|
{
|
|
|
|
lua.safe_script("obj = callable.new()");
|
|
|
|
lua.safe_script("v = obj(2, 'bark woof')");
|
|
|
|
int v = lua["v"];
|
|
|
|
REQUIRE(v == 11);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
SECTION("simple") {
|
|
|
|
lua.new_simple_usertype<callable>("callable");
|
|
|
|
{
|
|
|
|
lua.safe_script("obj = callable.new()");
|
|
|
|
lua.safe_script("v = obj(2, 'bark woof')");
|
|
|
|
int v = lua["v"];
|
|
|
|
REQUIRE(v == 11);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct stringable {
|
|
|
|
static const void* last_print_ptr;
|
|
|
|
};
|
|
|
|
const void* stringable::last_print_ptr = nullptr;
|
|
|
|
|
2017-09-17 02:18:45 +08:00
|
|
|
std::ostream& operator<<(std::ostream& ostr, const stringable& o) {
|
2017-08-11 15:24:17 +08:00
|
|
|
stringable::last_print_ptr = static_cast<const void*>(&o);
|
2017-08-22 03:25:43 +08:00
|
|
|
return ostr << "{ stringable, std::ostream! }";
|
|
|
|
}
|
|
|
|
|
|
|
|
struct adl_stringable {
|
|
|
|
static const void* last_print_ptr;
|
|
|
|
};
|
|
|
|
const void* adl_stringable::last_print_ptr = nullptr;
|
|
|
|
|
|
|
|
std::string to_string(const adl_stringable& o) {
|
|
|
|
adl_stringable::last_print_ptr = static_cast<const void*>(&o);
|
|
|
|
return "{ adl_stringable, to_string! }";
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace inside {
|
|
|
|
struct adl_stringable2 {
|
|
|
|
static const void* last_print_ptr;
|
|
|
|
};
|
|
|
|
const void* adl_stringable2::last_print_ptr = nullptr;
|
|
|
|
|
|
|
|
std::string to_string(const adl_stringable2& o) {
|
|
|
|
adl_stringable2::last_print_ptr = static_cast<const void*>(&o);
|
|
|
|
return "{ inside::adl_stringable2, inside::to_string! }";
|
|
|
|
}
|
2017-09-17 02:18:45 +08:00
|
|
|
} // namespace inside
|
2017-08-11 15:24:17 +08:00
|
|
|
|
2017-08-22 03:25:43 +08:00
|
|
|
struct member_stringable {
|
|
|
|
static const void* last_print_ptr;
|
|
|
|
|
|
|
|
std::string to_string() const {
|
|
|
|
member_stringable::last_print_ptr = static_cast<const void*>(this);
|
|
|
|
return "{ member_stringable, to_string! }";
|
|
|
|
}
|
|
|
|
};
|
|
|
|
const void* member_stringable::last_print_ptr = nullptr;
|
|
|
|
|
2017-08-11 15:24:17 +08:00
|
|
|
TEST_CASE("operators/stringable", "test std::ostream stringability") {
|
|
|
|
sol::state lua;
|
|
|
|
lua.open_libraries(sol::lib::base);
|
|
|
|
|
2017-08-22 03:25:43 +08:00
|
|
|
SECTION("plain") {
|
|
|
|
{
|
|
|
|
lua["obj"] = stringable();
|
|
|
|
lua.safe_script("print(obj)");
|
|
|
|
stringable& obj = lua["obj"];
|
|
|
|
REQUIRE(stringable::last_print_ptr == &obj);
|
|
|
|
}
|
|
|
|
}
|
2017-08-11 15:24:17 +08:00
|
|
|
SECTION("regular") {
|
|
|
|
lua.new_usertype<stringable>("stringable");
|
|
|
|
{
|
|
|
|
lua.safe_script("obj = stringable.new()");
|
|
|
|
lua.safe_script("print(obj)");
|
|
|
|
stringable& obj = lua["obj"];
|
|
|
|
REQUIRE(stringable::last_print_ptr == &obj);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
SECTION("simple") {
|
|
|
|
lua.new_simple_usertype<stringable>("stringable");
|
|
|
|
{
|
|
|
|
lua.safe_script("obj = stringable.new()");
|
|
|
|
lua.safe_script("print(obj)");
|
|
|
|
stringable& obj = lua["obj"];
|
|
|
|
REQUIRE(stringable::last_print_ptr == &obj);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-22 03:25:43 +08:00
|
|
|
TEST_CASE("operators/adl_stringable", "test adl to_string stringability") {
|
|
|
|
sol::state lua;
|
|
|
|
lua.open_libraries(sol::lib::base);
|
|
|
|
|
|
|
|
SECTION("plain") {
|
|
|
|
{
|
|
|
|
lua["obj"] = adl_stringable();
|
|
|
|
lua.safe_script("print(obj)");
|
|
|
|
adl_stringable& obj = lua["obj"];
|
|
|
|
REQUIRE(adl_stringable::last_print_ptr == &obj);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
SECTION("regular") {
|
|
|
|
lua.new_usertype<adl_stringable>("stringable");
|
|
|
|
{
|
|
|
|
lua["obj"] = adl_stringable();
|
|
|
|
lua.safe_script("print(obj)");
|
|
|
|
adl_stringable& obj = lua["obj"];
|
|
|
|
REQUIRE(adl_stringable::last_print_ptr == &obj);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
SECTION("simple") {
|
|
|
|
lua.new_simple_usertype<adl_stringable>("stringable");
|
|
|
|
{
|
|
|
|
lua.safe_script("obj = stringable.new()");
|
|
|
|
lua.safe_script("print(obj)");
|
|
|
|
adl_stringable& obj = lua["obj"];
|
|
|
|
REQUIRE(adl_stringable::last_print_ptr == &obj);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE("operators/inside::adl_stringable2", "test adl to_string stringability from inside a namespace") {
|
|
|
|
sol::state lua;
|
|
|
|
lua.open_libraries(sol::lib::base);
|
|
|
|
|
|
|
|
SECTION("plain") {
|
|
|
|
{
|
|
|
|
lua["obj"] = inside::adl_stringable2();
|
|
|
|
lua.safe_script("print(obj)");
|
|
|
|
inside::adl_stringable2& obj = lua["obj"];
|
|
|
|
REQUIRE(inside::adl_stringable2::last_print_ptr == &obj);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
SECTION("regular") {
|
|
|
|
lua.new_usertype<inside::adl_stringable2>("stringable");
|
|
|
|
{
|
|
|
|
lua.safe_script("obj = stringable.new()");
|
|
|
|
lua.safe_script("print(obj)");
|
|
|
|
inside::adl_stringable2& obj = lua["obj"];
|
|
|
|
REQUIRE(inside::adl_stringable2::last_print_ptr == &obj);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
SECTION("simple") {
|
|
|
|
lua.new_simple_usertype<inside::adl_stringable2>("stringable");
|
|
|
|
{
|
|
|
|
lua.safe_script("obj = stringable.new()");
|
|
|
|
lua.safe_script("print(obj)");
|
|
|
|
inside::adl_stringable2& obj = lua["obj"];
|
|
|
|
REQUIRE(inside::adl_stringable2::last_print_ptr == &obj);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE("operators/member_stringable", "test member to_string stringability") {
|
|
|
|
sol::state lua;
|
|
|
|
lua.open_libraries(sol::lib::base);
|
|
|
|
|
|
|
|
SECTION("plain") {
|
|
|
|
{
|
|
|
|
lua["obj"] = member_stringable();
|
|
|
|
lua.safe_script("print(obj)");
|
|
|
|
member_stringable& obj = lua["obj"];
|
|
|
|
REQUIRE(member_stringable::last_print_ptr == &obj);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
SECTION("regular") {
|
|
|
|
lua.new_usertype<member_stringable>("stringable");
|
|
|
|
{
|
|
|
|
lua.safe_script("obj = stringable.new()");
|
|
|
|
lua.safe_script("print(obj)");
|
|
|
|
member_stringable& obj = lua["obj"];
|
|
|
|
REQUIRE(member_stringable::last_print_ptr == &obj);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
SECTION("simple") {
|
|
|
|
lua.new_simple_usertype<member_stringable>("stringable");
|
|
|
|
{
|
|
|
|
lua.safe_script("obj = stringable.new()");
|
|
|
|
lua.safe_script("print(obj)");
|
|
|
|
member_stringable& obj = lua["obj"];
|
|
|
|
REQUIRE(member_stringable::last_print_ptr == &obj);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-11 15:24:17 +08:00
|
|
|
TEST_CASE("operators/container-like", "test that generic begin/end and iterator are automatically bound") {
|
|
|
|
#if SOL_LUA_VERSION > 501
|
|
|
|
struct container {
|
|
|
|
typedef int* iterator;
|
|
|
|
typedef int value_type;
|
|
|
|
|
2017-08-11 21:40:56 +08:00
|
|
|
value_type values[10];
|
2017-08-11 15:24:17 +08:00
|
|
|
|
|
|
|
container() {
|
|
|
|
std::iota(begin(), end(), 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
iterator begin() {
|
|
|
|
return &values[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
iterator end() {
|
|
|
|
return &values[0] + 10;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
sol::state lua;
|
|
|
|
lua.open_libraries(sol::lib::base);
|
|
|
|
|
2017-08-22 03:25:43 +08:00
|
|
|
SECTION("plain") {
|
|
|
|
{
|
|
|
|
lua["obj"] = container();
|
|
|
|
lua.safe_script("i = 0 for k, v in pairs(obj) do i = i + 1 assert(k == v) end");
|
|
|
|
std::size_t i = lua["i"];
|
|
|
|
REQUIRE(i == 10);
|
|
|
|
}
|
|
|
|
}
|
2017-08-11 15:24:17 +08:00
|
|
|
SECTION("regular") {
|
|
|
|
lua.new_usertype<container>("container");
|
|
|
|
{
|
|
|
|
lua.safe_script("obj = container.new()");
|
|
|
|
lua.safe_script("i = 0 for k, v in pairs(obj) do i = i + 1 assert(k == v) end");
|
|
|
|
std::size_t i = lua["i"];
|
|
|
|
REQUIRE(i == 10);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
SECTION("simple") {
|
|
|
|
lua.new_simple_usertype<container>("container");
|
|
|
|
{
|
|
|
|
lua.safe_script("obj = container.new()");
|
|
|
|
lua.safe_script("i = 0 for k, v in pairs(obj) do i = i + 1 assert(k == v) end");
|
|
|
|
std::size_t i = lua["i"];
|
|
|
|
REQUIRE(i == 10);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
2017-09-01 08:47:09 +08:00
|
|
|
SUCCEED("");
|
2017-08-11 15:24:17 +08:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE("operators/length", "test that size is automatically bound to the length operator") {
|
|
|
|
struct sizable {
|
|
|
|
std::size_t size() const {
|
|
|
|
return 6;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
sol::state lua;
|
|
|
|
lua.open_libraries(sol::lib::base);
|
|
|
|
|
2017-08-22 03:25:43 +08:00
|
|
|
SECTION("plain") {
|
|
|
|
{
|
|
|
|
lua["obj"] = sizable();
|
|
|
|
lua.safe_script("s = #obj");
|
|
|
|
std::size_t s = lua["s"];
|
|
|
|
REQUIRE(s == 6);
|
|
|
|
}
|
|
|
|
}
|
2017-08-11 15:24:17 +08:00
|
|
|
SECTION("regular") {
|
|
|
|
lua.new_usertype<sizable>("sizable");
|
2017-09-17 02:18:45 +08:00
|
|
|
{
|
|
|
|
lua.safe_script("obj = sizable.new()");
|
2017-08-11 15:24:17 +08:00
|
|
|
lua.safe_script("s = #obj");
|
|
|
|
std::size_t s = lua["s"];
|
|
|
|
REQUIRE(s == 6);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
SECTION("simple") {
|
|
|
|
lua.new_simple_usertype<sizable>("sizable");
|
|
|
|
{
|
|
|
|
lua.safe_script("obj = sizable.new()");
|
|
|
|
lua.safe_script("s = #obj");
|
|
|
|
std::size_t s = lua["s"];
|
|
|
|
REQUIRE(s == 6);
|
|
|
|
}
|
|
|
|
}
|
2017-08-06 07:20:28 +08:00
|
|
|
}
|