IBeforeExceptC should be a function.
testString: assert(typeof IBeforeExceptC=='function');
- text: IBeforeExceptC("receive") should return a boolean.
testString: assert(typeof IBeforeExceptC("receive")=='boolean');
- text: IBeforeExceptC("receive") should return true.
testString: assert.equal(IBeforeExceptC("receive"),true);
- text: IBeforeExceptC("science") should return false.
testString: assert.equal(IBeforeExceptC("science"),false);
- text: IBeforeExceptC("imperceivable") should return true.
testString: assert.equal(IBeforeExceptC("imperceivable"),true);
- text: IBeforeExceptC("inconceivable") should return true.
testString: assert.equal(IBeforeExceptC("inconceivable"),true);
- text: IBeforeExceptC("insufficient") should return false.
testString: assert.equal(IBeforeExceptC("insufficient"),false);
- text: IBeforeExceptC("omniscient") should return false.
testString: assert.equal(IBeforeExceptC("omniscient"),false);
```