| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | |
| 2 // for details. All rights reserved. Use of this source code is governed by a | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 // VMOptions=--enable_asserts | |
| 5 // | |
| 6 // Dart test program testing assert statements. | |
| 7 | |
| 8 class AssertTest { | |
| 9 static test() { | |
| 10 int i = 0; | |
| 11 try { | |
| 12 assert(false); | |
| 13 } catch (AssertionError error) { | |
| 14 i = 1; | |
| 15 Expect.equals("false", error.failedAssertion); | |
| 16 int pos = error.url.lastIndexOf("/", error.url.length); | |
| 17 if (pos == -1) { | |
| 18 pos = error.url.lastIndexOf("\\", error.url.length); | |
| 19 } | |
| 20 String subs = error.url.substring(pos + 1, error.url.length); | |
| 21 Expect.equals("AssertTest.dart", subs); | |
| 22 Expect.equals(12, error.line); | |
| 23 Expect.equals(14, error.column); | |
| 24 } | |
| 25 return i; | |
| 26 } | |
| 27 static testClosure() { | |
| 28 int i = 0; | |
| 29 try { | |
| 30 assert(() => false); | |
| 31 } catch (AssertionError error) { | |
| 32 i = 1; | |
| 33 Expect.equals("() => false", error.failedAssertion); | |
| 34 int pos = error.url.lastIndexOf("/", error.url.length); | |
| 35 if (pos == -1) { | |
| 36 pos = error.url.lastIndexOf("\\", error.url.length); | |
| 37 } | |
| 38 String subs = error.url.substring(pos + 1, error.url.length); | |
| 39 Expect.equals("AssertTest.dart", subs); | |
| 40 Expect.equals(30, error.line); | |
| 41 Expect.equals(14, error.column); | |
| 42 } | |
| 43 return i; | |
| 44 } | |
| 45 | |
| 46 static testMain() { | |
| 47 Expect.equals(1, test()); | |
| 48 Expect.equals(1, testClosure()); | |
| 49 } | |
| 50 } | |
| 51 | |
| 52 main() { | |
| 53 AssertTest.testMain(); | |
| 54 } | |
| OLD | NEW |