*** empty log message ***
[luabind.git] / test / test.hpp
blobe727523a9cff250c186733276fd02bb0c4fe1512
1 // Copyright (c) 2004 Daniel Wallin
3 // Permission is hereby granted, free of charge, to any person obtaining a
4 // copy of this software and associated documentation files (the "Software"),
5 // to deal in the Software without restriction, including without limitation
6 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
7 // and/or sell copies of the Software, and to permit persons to whom the
8 // Software is furnished to do so, subject to the following conditions:
10 // The above copyright notice and this permission notice shall be included
11 // in all copies or substantial portions of the Software.
13 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
14 // ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
15 // TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
16 // PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
17 // SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
18 // ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
19 // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
21 // OR OTHER DEALINGS IN THE SOFTWARE.
23 #ifndef TEST_040212_HPP
24 #define TEST_040212_HPP
26 #include <luabind/lua_include.hpp>
27 #include <boost/test/test_tools.hpp>
28 #include <boost/preprocessor/cat.hpp>
30 struct lua_state
32 lua_state();
33 ~lua_state();
35 operator lua_State*() const;
36 void check() const;
38 private:
39 lua_State* m_state;
40 int m_top;
43 void dostring(lua_State* L, char const* str);
45 template<class T>
46 struct counted_type
48 static int count;
50 counted_type()
52 ++count;
55 counted_type(counted_type const&)
57 ++count;
60 ~counted_type()
62 BOOST_CHECK(--count >= 0);
66 template<class T>
67 int counted_type<T>::count = 0;
69 #define COUNTER_GUARD(type) \
70 struct BOOST_PP_CAT(type, _counter_guard) \
71 { \
72 ~BOOST_PP_CAT(type, _counter_guard()) \
73 { \
74 BOOST_CHECK(counted_type<type>::count == 0); \
75 } \
76 }; \
77 type##_counter_guard BOOST_PP_CAT(type, _guard)
80 #define COUNTER_GUARD(x)
82 #define DOSTRING_EXPECTED(state, str, expected) \
83 { \
84 try \
85 { \
86 dostring(state, str); \
87 } \
88 catch (std::string const& s) \
89 { \
90 if (s != expected) \
91 BOOST_ERROR(s.c_str()); \
92 } \
95 #define DOSTRING(state, str) \
96 { \
97 try \
98 { \
99 dostring(state, str); \
101 catch (std::string const& s) \
103 BOOST_ERROR(s.c_str()); \
107 #endif // TEST_040212_HPP