| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 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 | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 import "package:expect/expect.dart"; | |
| 6 | |
| 7 /** | 5 /** |
| 8 * A test of simple runtime behavior on numbers, strings and lists with | 6 * A test of simple runtime behavior on numbers, strings and lists with |
| 9 * a focus on both correct behavior and runtime errors. | 7 * a focus on both correct behavior and runtime errors. |
| 10 * | 8 * |
| 11 * This file is written to use minimal type declarations to match a | 9 * This file is written to use minimal type declarations to match a |
| 12 * typical dynamic language coding style. | 10 * typical dynamic language coding style. |
| 13 */ | 11 */ |
| 14 class CoreRuntimeTypesTest { | 12 class CoreRuntimeTypesTest { |
| 15 static testMain() { | 13 static testMain() { |
| 16 testBooleanOperators(); | 14 testBooleanOperators(); |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 '${true}'.toString(); | 274 '${true}'.toString(); |
| 277 '${false}'.toString(); | 275 '${false}'.toString(); |
| 278 ''.toString(); | 276 ''.toString(); |
| 279 ''.endsWith(''); | 277 ''.endsWith(''); |
| 280 } | 278 } |
| 281 } | 279 } |
| 282 | 280 |
| 283 main() { | 281 main() { |
| 284 CoreRuntimeTypesTest.testMain(); | 282 CoreRuntimeTypesTest.testMain(); |
| 285 } | 283 } |
| OLD | NEW |