Sign in
chromium
/
external
/
selenium
/
master
/
.
/
javascript
/
selenium-core
/
test
/
SampleTest.js
blob: eecfbaf78d48558672cd62e46ecdd124adba78e7 [
file
] [
log
] [
blame
]
function
SampleTest
(
name
)
{
TestCase
.
call
(
this
,
name
);
}
SampleTest
.
prototype
=
new
TestCase
();
SampleTest
.
prototype
.
setUp
=
function
()
{
}
SampleTest
.
prototype
.
testSample
=
function
()
{
this
.
assertTrue
(
true
);
}