Lines Matching refs:exception
34 // Check that an exception is thrown when null is passed as object.
35 var exception = false;
39 exception = true;
42 assertTrue(exception);
44 // Check that an exception is thrown when undefined is passed as object.
45 exception = false;
49 exception = true;
52 assertTrue(exception);
54 // Check that an exception is thrown when non-object is passed as object.
55 exception = false;
59 exception = true;
62 assertTrue(exception);
1057 exception = false;
1061 exception = true;
1064 assertTrue(exception);