Skip to content

Commit

Permalink
improved tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rii-mango committed Feb 5, 2016
1 parent dcb3667 commit 55470b2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/driver-nifti1-big.js
Expand Up @@ -37,6 +37,10 @@ describe('NIFTI-Reader-JS', function () {
});
});

it('numBitsPerVoxel should be 32', function () {
assert.equal(32, nifti1.numBitsPerVoxel);
});

it('littleEndian should be false', function () {
assert.equal(false, nifti1.littleEndian);
});
Expand Down
4 changes: 4 additions & 0 deletions tests/driver-nifti1-little.js
Expand Up @@ -37,6 +37,10 @@ describe('NIFTI-Reader-JS', function () {
});
});

it('numBitsPerVoxel should be 32', function () {
assert.equal(32, nifti1.numBitsPerVoxel);
});

it('littleEndian should be true', function () {
assert.equal(true, nifti1.littleEndian);
});
Expand Down

0 comments on commit 55470b2

Please sign in to comment.