summaryrefslogtreecommitdiffstats
path: root/tests/auto/installer/installerscriptengine/data/component1.qs
diff options
context:
space:
mode:
authorTim Jenssen <tim.jenssen@digia.com>2013-05-07 13:43:13 +0200
committerTim Jenssen <tim.jenssen@digia.com>2013-05-07 14:31:18 +0200
commite3bd8afc6bda58e482771e09adf8294e75b89eff (patch)
treeea3f5ed495a3ec2ed425f93b0ee86c9c2c0ad8c1 /tests/auto/installer/installerscriptengine/data/component1.qs
parent56d8d51fce6f73fa7059eb850a62693899d27135 (diff)
add installerscriptengine autotest
Change-Id: I662c22ea8fc1276c78abedd037f51f4afb08271f Reviewed-by: Karsten Heimrich <karsten.heimrich@digia.com>
Diffstat (limited to 'tests/auto/installer/installerscriptengine/data/component1.qs')
-rw-r--r--tests/auto/installer/installerscriptengine/data/component1.qs47
1 files changed, 47 insertions, 0 deletions
diff --git a/tests/auto/installer/installerscriptengine/data/component1.qs b/tests/auto/installer/installerscriptengine/data/component1.qs
new file mode 100644
index 000000000..4f9ed571c
--- /dev/null
+++ b/tests/auto/installer/installerscriptengine/data/component1.qs
@@ -0,0 +1,47 @@
+function Component()
+{
+}
+
+Component.prototype.retranslateUi = function()
+{
+ // arguments.callee to get the current function name doesn't work in that case
+ print("retranslateUi - OK");
+ // no default implementation for this method
+ // component.languageChanged();
+}
+
+Component.prototype.createOperationsForPath = function(path)
+{
+ print("createOperationsForPath - OK");
+ component.createOperationsForPath(path);
+}
+
+Component.prototype.createOperationsForArchive = function(archive)
+{
+ print("createOperationsForArchive - OK");
+ component.createOperationsForArchive(archive);
+}
+
+Component.prototype.beginInstallation = function()
+{
+ print("beginInstallation - OK");
+ component.beginInstallation();
+}
+
+Component.prototype.createOperations = function()
+{
+ print("createOperations - OK");
+ component.createOperations();
+}
+
+Component.prototype.isAutoDependOn = function()
+{
+ print("isAutoDependOn - OK");
+ return false;
+}
+
+Component.prototype.isDefault = function()
+{
+ print("isDefault - OK");
+ return false;
+}