idMatrix deve ser uma função.
testString: 'assert(typeof idMatrix=="function","idMatrix should be a function.");'
- text: idMatrix(1) deve retornar um array.
testString: 'assert(Array.isArray(idMatrix(1)),"idMatrix(1) should return an array.");'
- text: 'idMatrix(1) deve retornar "+JSON.stringify(results[0])+" .'
testString: 'assert.deepEqual(idMatrix(1),results[0],"idMatrix(1) should return "+JSON.stringify(results[0])+".");'
- text: 'idMatrix(2) deve retornar "+JSON.stringify(results[1])+" .'
testString: 'assert.deepEqual(idMatrix(2),results[1],"idMatrix(2) should return "+JSON.stringify(results[1])+".");'
- text: 'idMatrix(3) deve retornar "+JSON.stringify(results[2])+" .'
testString: 'assert.deepEqual(idMatrix(3),results[2],"idMatrix(3) should return "+JSON.stringify(results[2])+".");'
- text: 'idMatrix(4) deve retornar "+JSON.stringify(results[3])+" .'
testString: 'assert.deepEqual(idMatrix(4),results[3],"idMatrix(4) should return "+JSON.stringify(results[3])+".");'
```