summaryrefslogtreecommitdiffstats
path: root/sigcore/test/TestScript.h
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2008-12-23 18:59:23 -0500
committerBen Boeckel <MathStuf@gmail.com>2008-12-23 18:59:23 -0500
commitc1393e309a1500550314340b1cb7aa89a5c516ae (patch)
tree6f3b1833c014d367f68a39209d1fd88e6cf908ad /sigcore/test/TestScript.h
parent69658a966d8527b5f3824c25e8fd2b00ae0fa3ac (diff)
downloadsigen-c1393e309a1500550314340b1cb7aa89a5c516ae.tar.gz
sigen-c1393e309a1500550314340b1cb7aa89a5c516ae.tar.xz
sigen-c1393e309a1500550314340b1cb7aa89a5c516ae.zip
Added (commented out) code for other languages
Diffstat (limited to 'sigcore/test/TestScript.h')
-rw-r--r--sigcore/test/TestScript.h20
1 files changed, 18 insertions, 2 deletions
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