Sign in
mojo
/
mojo-tools
/
97e98ed80c95c4471e1248892c3cd245113be9bf
/
.
/
sky
/
tests
/
lowlevel
/
unittest.sky
blob: e32c2f0bc167c15f7c6b6ebaa4c08682a4bcdd47 [
file
] [
log
] [
blame
]
<script>
import
"../resources/third_party/unittest/unittest.dart"
;
import
"../resources/unit.dart"
;
void
main
()
{
initUnit
();
test
(
'this is a test'
,
()
{
int
x
=
2
+
3
;
expect
(
x
,
equals
(
5
));
});
}
</script>
>