Exemple #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')
Exemple #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
Exemple #7
0
 def test_zeros_is_one(self):
     assert level_detection(fvec(1024), -70) == 1
Exemple #8
0
 def test_fail_not_fvec(self):
     with self.assertRaises(ValueError):
         level_detection("default", -70)
Exemple #9
0
 def test_minus_ones_is_zero(self):
     from numpy import ones
     assert level_detection(ones(1024, dtype=float_type), -70) == 0
Exemple #10
0
 def test_zeros_is_one(self):
     assert level_detection(fvec(1024), -70) == 1
Exemple #11
0
 def test_fail_not_fvec(self):
     with self.assertRaises(ValueError):
         level_detection("default", -70)
Exemple #12
0
 def test_accept_fvec(self):
     level_detection(fvec(1024), -70.)
Exemple #13
0
 def test_zeros_is_one(self):
     from math import isinf
     assert level_detection(fvec(1024), -70) == 1
Exemple #14
0
 def test_fail_not_fvec(self):
     try:
         level_detection("default", -70)
     except ValueError, e:
         pass