- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/python/examples/aubioonset.py
rf1771f9 r100f950 1 1 from template import * 2 2 3 class aubioonset_ unit(program_test_case):3 class aubioonset_test_case(program_test_case): 4 4 5 5 import os.path … … 24 24 self.getOutput() 25 25 # only one onset in woodblock.aiff 26 self.assertNotEqual(0, len(str(self.output)),\27 "no output produced with command:\n" + self.command)28 self.assertEqual(1, len(self.output.split('\n')) )26 assert len(str(self.output)) != 0, "no output produced with command:\n" \ 27 + self.command 28 assert len(self.output.split('\n')) == 1 29 29 # onset should be at 0.00000 30 self.assertEqual(0, float(self.output.strip()))30 assert float(self.output.strip()) == 0. 31 31 32 list_of_onset_modes = ["energy", "specdiff", "hfc", "complex", "phase", \ 33 "kl", "mkl", "specflux"] 34 35 for name in list_of_onset_modes: 36 exec("class aubioonset_"+name+"_unit(aubioonset_unit):\n\ 32 for name in ["energy", "specdiff", "hfc", "complex", "phase", "kl", "mkl"]: 33 exec("class aubioonset_test_case_"+name+"(aubioonset_test_case):\n\ 37 34 options = \" -O "+name+" \"") 38 35
Note: See TracChangeset
for help on using the changeset viewer.