728x90 undefined1 null == undefined? 자바스크립트 내용을 검증하는 과정에서 null이 undefined까지 커버 할 수 있다는 것을 보았다. (그전에는 그렇게 크게 생각해보지는 않았다) class Assert { static notNull(data) { if (data == null) { throw "Null point exception" } } }위의 코드는 아래의 테스트를 모두 통과한다 describe("assert integration test", function () { it("notNull", function () { expect(() => Assert.notNull()) .toThrow(); }); it("notNull with undefined", function () { expect(() => Assert.notNull(und.. 2020. 6. 26. 이전 1 다음 728x90