diff options
Diffstat (limited to 'JavaScriptCore/qt/tests/qscriptvalue/tst_qscriptvalue.h')
-rw-r--r-- | JavaScriptCore/qt/tests/qscriptvalue/tst_qscriptvalue.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/JavaScriptCore/qt/tests/qscriptvalue/tst_qscriptvalue.h b/JavaScriptCore/qt/tests/qscriptvalue/tst_qscriptvalue.h index 1b3c657..28154a9 100644 --- a/JavaScriptCore/qt/tests/qscriptvalue/tst_qscriptvalue.h +++ b/JavaScriptCore/qt/tests/qscriptvalue/tst_qscriptvalue.h @@ -36,8 +36,8 @@ public: virtual ~tst_QScriptValue(); private slots: - void toString_data(); - void toString(); + void toStringSimple_data(); + void toStringSimple(); void copyConstructor_data(); void copyConstructor(); void assignOperator_data(); @@ -76,6 +76,9 @@ private slots: void isValid_data(); void isValid(); + void toString_data(); + void toString(); + void toNumber_data(); void toNumber(); @@ -146,6 +149,10 @@ private: void isValid_makeData(const char* expr); void isValid_test(const char* expr, const QScriptValue& value); + void toString_initData(); + void toString_makeData(const char*); + void toString_test(const char*, const QScriptValue&); + void toNumber_initData(); void toNumber_makeData(const char*); void toNumber_test(const char*, const QScriptValue&); |