Sign in
mojo
/
mojo-tools
/
ce1c56c8c532bae98e9b9ffb71e3a98d8cae1fe3
/
.
/
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>
>