Created
September 3, 2012 19:22
-
-
Save nallachaitu/3612589 to your computer and use it in GitHub Desktop.
test file that contains the javascript test functions
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class lukas | |
{ | |
@drone | |
browser initiation... | |
@Test | |
public void chaitu() | |
{ | |
//get to the url | |
browser.get(....."url"); | |
//reading results | |
} | |
@Test | |
public void enlighten() | |
{ | |
//get to the url | |
browser.get(....."url"); | |
//reading results | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module("lukas"); | |
test("chaitu",function(){ | |
ok(true); | |
}); | |
test("enlighten",function(){ | |
equal("1","1","you are right"); | |
ok(true); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment