Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(231)

Side by Side Diff: tests/language/null_access_error_test.dart

Issue 11417058: Revert "Remove NullPointerException." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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
5 class NullAccessTest {
6
7 static void testNullVariable() {
8 int variable;
9 bool exceptionCaught = false;
10 bool wrongExceptionCaught = false;
11 try {
12 variable++;
13 } on NoSuchMethodError catch (ex) {
14 exceptionCaught = true;
15 } catch (ex) {
16 wrongExceptionCaught = true;
17 }
18 Expect.isTrue(exceptionCaught);
19 Expect.isFalse(wrongExceptionCaught);
20 }
21
22 static int helperFunction(int parameter) {
23 return parameter++;
24 }
25
26 static void testNullFunctionCall() {
27 int variable;
28 bool exceptionCaught = false;
29 bool wrongExceptionCaught = false;
30 try {
31 variable = helperFunction(variable);
32 } on NoSuchMethodError catch (ex) {
33 exceptionCaught = true;
34 } catch (ex) {
35 wrongExceptionCaught = true;
36 }
37 Expect.isTrue(exceptionCaught);
38 Expect.isFalse(wrongExceptionCaught);
39 }
40
41 static void testMain() {
42 testNullVariable();
43 testNullFunctionCall();
44 }
45 }
46
47 main() {
48 NullAccessTest.testMain();
49 }
OLDNEW
« no previous file with comments | « tests/language/method_invocation_test.dart ('k') | tests/language/null_pointer_exception_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698