annotate tests/test_dot.py @ 5:382ab19fb052

[test] stub test for dot product
author Jeff Hammel <k0scist@gmail.com>
date Wed, 30 Aug 2017 17:32:06 -0700
parents
children bb8b6b06ca83
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5
382ab19fb052 [test] stub test for dot product
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
1 #!/usr/bin/env python
382ab19fb052 [test] stub test for dot product
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
2
382ab19fb052 [test] stub test for dot product
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
3 """
382ab19fb052 [test] stub test for dot product
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
4 test dot product
382ab19fb052 [test] stub test for dot product
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
5 """
382ab19fb052 [test] stub test for dot product
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
6
382ab19fb052 [test] stub test for dot product
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
7 import unittest
382ab19fb052 [test] stub test for dot product
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
8
382ab19fb052 [test] stub test for dot product
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
9
382ab19fb052 [test] stub test for dot product
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
10 class TestDot(unittest.TestCase):
382ab19fb052 [test] stub test for dot product
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
11
382ab19fb052 [test] stub test for dot product
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
12 def test_simple(self):
382ab19fb052 [test] stub test for dot product
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
13 """simple dot product test"""
382ab19fb052 [test] stub test for dot product
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
14 # TODO
382ab19fb052 [test] stub test for dot product
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
15
382ab19fb052 [test] stub test for dot product
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
16 if __name__ == '__main__':
382ab19fb052 [test] stub test for dot product
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
17 unittest.main()