Skeleton of test test set

Former-commit-id: 924ef7d968f027768b13e983d8bcac823538f738
This commit is contained in:
Marek Nečada 2016-07-22 15:35:41 +03:00
parent 28a805b638
commit a4b160dc41
1 changed files with 29 additions and 0 deletions

29
tests/test_qpms_p.py Normal file
View File

@ -0,0 +1,29 @@
import unittest
import qpms
import numpy as np
# Some constants go here.
maxx = 20 # The maximum argument of the Bessel's functions, i.e. maximum wave number times the distance
lMax = 25 # To which order we decompose the waves
class PlaneWaveDecompositionTests(unittest.TestCase):
def testRandomInc(self):
pass
def testCornerCases(self):
pass
class SphericalWaveTranslationTests(unittest.TestCase):
def sometest(self):
pass
def main():
unittest.main()
if __name__ == '__main__':
main()