656e98150b
Review URL: https://chromiumcodereview.appspot.com//10037027 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@6480 260f80e4-7a28-3924-810f-c04153c831b5
20 lines
561 B
HTML
20 lines
561 B
HTML
<html> <head><title>Frogger Test</title></head>
|
|
<body>
|
|
<script type="application/javascript"
|
|
src="../../lib/unittest/test_controller.js"></script>
|
|
<script type="application/dart">
|
|
#import('dart:dom');
|
|
#import('../../lib/unittest/unittest.dart');
|
|
#import('../../lib/unittest/dom_configuration.dart');
|
|
|
|
void main() {
|
|
useDomConfiguration();
|
|
test('MathTest', () { Expect.equals(2, 1 + 1); });
|
|
test('BoolTest', () { Expect.notEquals(true, false); });
|
|
}
|
|
</script>
|
|
|
|
<iframe src="tip.html" style="visibility:hidden;display:none"></iframe>
|
|
</body>
|
|
</html>
|