2015-01-29 15:27:18 +01:00
|
|
|
#!/usr/bin/python3
|
|
|
|
|
|
|
|
import unittest
|
|
|
|
|
|
|
|
from test_arithmetic import *
|
|
|
|
from test_colour import *
|
|
|
|
from test_conversion import *
|
|
|
|
from test_convolution import *
|
|
|
|
from test_create import *
|
|
|
|
from test_draw import *
|
2015-02-16 17:03:39 +01:00
|
|
|
from test_foreign import *
|
2015-01-29 15:27:18 +01:00
|
|
|
from test_histogram import *
|
|
|
|
from test_morphology import *
|
|
|
|
from test_resample import *
|
2015-10-13 11:29:53 +02:00
|
|
|
from test_iofuncs import *
|
2015-01-29 15:27:18 +01:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|
|
|
|
|