Lines Matching full:assertthrows
14 assertThrows(function() {
155 assertThrows(function() {
159 assertThrows(function() {
175 assertThrows(function() {
179 assertThrows(function() {
187 assertThrows(function() { Reflect.construct(void 0, []); }, TypeError);
188 assertThrows(function() { Reflect.construct(null, []); }, TypeError);
189 assertThrows(function() { Reflect.construct(123, []); }, TypeError);
190 assertThrows(function() { Reflect.construct("str", []); }, TypeError);
191 assertThrows(function() { Reflect.construct(Symbol("x"), []); }, TypeError);
192 assertThrows(function() { Reflect.construct(/123/, []); }, TypeError);
193 assertThrows(function() { Reflect.construct(NaN, []); }, TypeError);
194 assertThrows(function() { Reflect.construct({}, []); }, TypeError);
195 assertThrows(function() { Reflect.construct([], []); }, TypeError);
200 assertThrows(function() { Reflect.construct(void 0, []); }, TypeError);
201 assertThrows(function() { Reflect.construct(null, []); }, TypeError);
202 assertThrows(function() { Reflect.construct(123, []); }, TypeError);
203 assertThrows(function() { Reflect.construct("str", []); }, TypeError);
204 assertThrows(function() { Reflect.construct(Symbol("x"), []); }, TypeError);
205 assertThrows(function() { Reflect.construct(/123/, []); }, TypeError);
206 assertThrows(function() { Reflect.construct(NaN, []); }, TypeError);
207 assertThrows(function() { Reflect.construct({}, []); }, TypeError);
208 assertThrows(function() { Reflect.construct([], []); }, TypeError);
215 assertThrows(function() { Reflect.construct(noopStrict, null); }, TypeError);
216 assertThrows(function() { Reflect.construct(noopSloppy, null); }, TypeError);
217 assertThrows(function() { Reflect.construct(noopStrict, 1); }, TypeError);
218 assertThrows(function() { Reflect.construct(noopSloppy, 1); }, TypeError);
219 assertThrows(function() { Reflect.construct(noopStrict, "BAD"); }, TypeError);
220 assertThrows(function() { Reflect.construct(noopSloppy, "BAD"); }, TypeError);
221 assertThrows(function() { Reflect.construct(noopStrict, true); }, TypeError);
222 assertThrows(function() { Reflect.construct(noopSloppy, true); }, TypeError);
224 assertThrows(function() { Reflect.construct(noopStrict, sym); }, TypeError);
225 assertThrows(function() { Reflect.construct(noopSloppy, sym); }, TypeError);