diff options
| author | Ben Boeckel <MathStuf@gmail.com> | 2008-12-23 18:59:23 -0500 |
|---|---|---|
| committer | Ben Boeckel <MathStuf@gmail.com> | 2008-12-23 18:59:23 -0500 |
| commit | c1393e309a1500550314340b1cb7aa89a5c516ae (patch) | |
| tree | 6f3b1833c014d367f68a39209d1fd88e6cf908ad /sigcore/test/TestScript.h | |
| parent | 69658a966d8527b5f3824c25e8fd2b00ae0fa3ac (diff) | |
| download | sigen-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.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 |
