summaryrefslogtreecommitdiff
path: root/school/node_modules/cuint/test/UINT32_negate-test.js
blob: 6c8defae7bf4979c46c95fee70ef6450f9a8cfa7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
var assert = require('assert')
var UINT32 = require('..').UINT32

describe('negate method', function () {

  describe('0', function () {

    it('should return 0', function (done) {
      var u = UINT32(0).negate()

      assert.equal( u.toNumber(), 0 )
      done()
    })

  })

  describe('1', function () {

    it('should return -1', function (done) {
      var u = UINT32(1).negate()

      assert.equal( u.toNumber(), -1 )
      done()
    })

  })

  describe('low bit', function () {

    it('should return -n', function (done) {
      var u = UINT32(3).negate()

      assert.equal( u.toNumber(), -3 )
      done()
    })

  })

  describe('high bit', function () {

    it('should return -n', function (done) {
      var n = Math.pow(2, 17)
      var u = UINT32(n).negate()

      assert.equal( u.toNumber(), -n )
      done()
    })

  })

})