Exemplo n.º 1
0
 def test_fail_not_fvec(self):
     try:
         level_detection("default", -70)
     except ValueError as e:
         pass
     else:
         self.fail('non-number input phase does not raise a TypeError')
Exemplo n.º 2
0
 def test_fail_not_fvec(self):
     try:
         level_detection("default", -70)
     except ValueError as e:
         pass
     else:
         self.fail('non-number input phase does not raise a TypeError')
 def test_accept_fvec(self):
     level_detection(fvec(1024), -70.)
 def test_minus_ones_is_zero(self):
     from numpy import ones
     assert level_detection(ones(1024, dtype="float32"), -70) == 0
 def test_zeros_is_one(self):
     from math import isinf
     assert level_detection(fvec(1024), -70) == 1
 def test_fail_not_fvec(self):
     try:
         level_detection("default", -70)
     except ValueError, e:
         pass
Exemplo n.º 7
0
 def test_zeros_is_one(self):
     assert level_detection(fvec(1024), -70) == 1
Exemplo n.º 8
0
 def test_fail_not_fvec(self):
     with self.assertRaises(ValueError):
         level_detection("default", -70)
Exemplo n.º 9
0
 def test_minus_ones_is_zero(self):
     from numpy import ones
     assert level_detection(ones(1024, dtype=float_type), -70) == 0
Exemplo n.º 10
0
 def test_zeros_is_one(self):
     assert level_detection(fvec(1024), -70) == 1
Exemplo n.º 11
0
 def test_fail_not_fvec(self):
     with self.assertRaises(ValueError):
         level_detection("default", -70)
Exemplo n.º 12
0
 def test_accept_fvec(self):
     level_detection(fvec(1024), -70.)
Exemplo n.º 13
0
 def test_zeros_is_one(self):
     from math import isinf
     assert level_detection(fvec(1024), -70) == 1
Exemplo n.º 14
0
 def test_fail_not_fvec(self):
     try:
         level_detection("default", -70)
     except ValueError, e:
         pass