diff options
Diffstat (limited to 'sigcore/test/TestScript.h')
| -rw-r--r-- | sigcore/test/TestScript.h | 20 |
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 |
