summaryrefslogtreecommitdiffstats
path: root/tests/auto/installer/installerscriptengine/data/component1.qs
diff options
context:
space:
mode:
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;
+}