IBeforeExceptC должен быть функцией.
testString: 'assert(typeof IBeforeExceptC=="function","IBeforeExceptC should be a function.");'
- text: IBeforeExceptC("receive") должен возвращать логическое значение.
testString: 'assert(typeof IBeforeExceptC("receive")=="boolean","IBeforeExceptC("receive") should return a boolean.");'
- text: IBeforeExceptC("receive") должен возвращать true .
testString: 'assert.equal(IBeforeExceptC("receive"),true,"IBeforeExceptC("receive") should return true.");'
- text: IBeforeExceptC("science") должен возвращать false .
testString: 'assert.equal(IBeforeExceptC("science"),false,"IBeforeExceptC("science") should return false.");'
- text: IBeforeExceptC("imperceivable") должен возвращать true .
testString: 'assert.equal(IBeforeExceptC("imperceivable"),true,"IBeforeExceptC("imperceivable") should return true.");'
- text: IBeforeExceptC("inconceivable") должен возвращать true .
testString: 'assert.equal(IBeforeExceptC("inconceivable"),true,"IBeforeExceptC("inconceivable") should return true.");'
- text: IBeforeExceptC("insufficient") должен возвращать false .
testString: 'assert.equal(IBeforeExceptC("insufficient"),false,"IBeforeExceptC("insufficient") should return false.");'
- text: IBeforeExceptC("omniscient") должен возвращать false .
testString: 'assert.equal(IBeforeExceptC("omniscient"),false,"IBeforeExceptC("omniscient") should return false.");'
```