Lines Matching refs:testNotEqual
43 function testNotEqual(a, b) {
70 testNotEqual(NaN, NaN);
71 testNotEqual(NaN, 0);
72 testNotEqual(NaN, Infinity);
83 testNotEqual(0.9, 1);
84 testNotEqual(0.999999, 1);
85 testNotEqual(0.9999999999, 1);
86 testNotEqual(0.9999999999999, 1);
99 testNotEqual(true, false);
136 testNotEqual(null, new Wrapper(null));
137 testNotEqual(null, 0);
138 testNotEqual(null, false);
139 testNotEqual(null, "");
140 testNotEqual(null, new Object());
141 testNotEqual(undefined, new Wrapper(undefined));
142 testNotEqual(undefined, 0);
143 testNotEqual(undefined, false);
144 testNotEqual(undefined, "");
145 testNotEqual(undefined, new Object());
190 testNotEqual(new Date(42), Number(new Date(42)));
194 testNotEqual(dnow, Number(dnow));
208 testNotEqual(new Wrapper(null), new Wrapper(null));
209 testNotEqual(new Boolean(true), new Boolean(true));
210 testNotEqual(new Boolean(false), new Boolean(false));
211 testNotEqual(new String("a"), new String("a"));
212 testNotEqual(new Number(42), new Number(42));
213 testNotEqual(new Date(42), new Date(42));
214 testNotEqual(new Array(42), new Array(42));
215 testNotEqual(new Object(), new Object());
226 testNotEqual(badObject, {});
227 testNotEqual(badObject, null);
228 testNotEqual(badObject, undefined);
244 testNotEqual(Object(s), Object(s));
250 testNotEqual(Object(simd), Object(simd));