From c1393e309a1500550314340b1cb7aa89a5c516ae Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Tue, 23 Dec 2008 18:59:23 -0500 Subject: Added (commented out) code for other languages --- sigcore/test/TestScript.h | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) (limited to 'sigcore/test/TestScript.h') diff --git a/sigcore/test/TestScript.h b/sigcore/test/TestScript.h index 8768d593..9a2d3e10 100644 --- a/sigcore/test/TestScript.h +++ b/sigcore/test/TestScript.h @@ -21,6 +21,12 @@ // Sigcore includes #include "../Script.h" +// Forward declarations +namespace Kross +{ +class Action; +} + class TestScript : public QObject { Q_OBJECT @@ -39,13 +45,23 @@ class TestScript : public QObject bool m_foo; bool m_bar; QString m_value; + Kross::Action* m_action; private slots: - void initTestCase(); + void init(); + void cleanup(); + void setInterpreter(); void setScript(); void assignment(); void equality(); - void running(); + + void python(); +// void falcon(); +// void kjs(); +// void java(); +// void lua(); +// void ruby(); +// void mono(); }; #endif -- cgit