Skip to content

Commit

Permalink
fix #810 Now using the robot to simulate user interaction.
Browse files Browse the repository at this point in the history
  • Loading branch information
simonarbuckle authored and flongo committed Nov 21, 2013
1 parent 1bc0ced commit 78a1fd4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/aria/templates/validation/errortext/ErrorTextTestCase.js
Expand Up @@ -19,10 +19,10 @@
*/
Aria.classDefinition({
$classpath : "test.aria.templates.validation.errortext.ErrorTextTestCase",
$extends : "aria.jsunit.TemplateTestCase",
$extends : "aria.jsunit.RobotTestCase",
$dependencies : ["aria.resources.handlers.LCResourcesHandler"],
$constructor : function () {
this.$TemplateTestCase.constructor.call(this);
this.$RobotTestCase.constructor.call(this);
this.handler = new aria.resources.handlers.LCResourcesHandler();
this.setTestEnv({
template : "test.aria.templates.validation.errortext.ErrorText",
Expand All @@ -33,7 +33,7 @@ Aria.classDefinition({
},
$destructor : function () {
this.handler.$dispose();
this.$TemplateTestCase.$destructor.call(this);
this.$RobotTestCase.$destructor.call(this);
},
$prototype : {
runTemplateTest : function () {
Expand Down Expand Up @@ -76,4 +76,4 @@ Aria.classDefinition({
this.notifyTemplateTestEnd();
}
}
});
});

0 comments on commit 78a1fd4

Please sign in to comment.