jsdk-offical
Version:
JSDK is the most comprehensive TypeScript framework, like JDK.
28 lines (23 loc) • 667 B
text/typescript
/// <reference path="../../dist/jsdk.d.ts" />
module JS {
export namespace test {
('JS.test.ErrorsTest')
export class ErrorsTest extends TestCase {
test1() {
Assert.equalError(TypeError, ()=>{
throw new TypeError()
});
}
test2() {
Assert.equalError(TypeError, ()=>{
throw new TypeError('xxx')
});
}
test3() {
Assert.equalError(JSError, ()=>{
throw new JSError('xxx', new TypeError())
});
}
}
}
}