Skeleton of test test set
Former-commit-id: 924ef7d968f027768b13e983d8bcac823538f738
This commit is contained in:
parent
28a805b638
commit
a4b160dc41
|
@ -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()
|
||||||
|
|
Loading…
Reference in New Issue