32 lines
395 B
Python
32 lines
395 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
|
|
import unittest
|
|
|
|
from pymath.polynomDeg2 import Polynom_deg2
|
|
|
|
|
|
|
|
class TestPolynomDeg2(unittest.TestCase):
|
|
"""Testing functions from pymath.polynomDeg2"""
|
|
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# -----------------------------
|
|
# Reglages pour 'vim'
|
|
# vim:set autoindent expandtab tabstop=4 shiftwidth=4:
|
|
# cursor: 16 del
|
|
|