IBeforeExceptC
应该是一个函数。
testString: assert(typeof IBeforeExceptC=='function');
- text: IBeforeExceptC("receive")
应该返回一个布尔值。
testString: assert(typeof IBeforeExceptC("receive")=='boolean');
- text: IBeforeExceptC("receive")
应该返回true
。
testString: assert.equal(IBeforeExceptC("receive"),true);
- text: IBeforeExceptC("science")
应该返回false
。
testString: assert.equal(IBeforeExceptC("science"),false);
- text: IBeforeExceptC("imperceivable")
应该返回true
。
testString: assert.equal(IBeforeExceptC("imperceivable"),true);
- text: IBeforeExceptC("inconceivable")
应该返回true
。
testString: assert.equal(IBeforeExceptC("inconceivable"),true);
- text: IBeforeExceptC("insufficient")
应返回false
。
testString: assert.equal(IBeforeExceptC("insufficient"),false);
- text: IBeforeExceptC("omniscient")
应该返回false
。
testString: assert.equal(IBeforeExceptC("omniscient"),false);
```