Run all the tests in the test suite.
(verbosity=2)
| 748 | ''' |
| 749 | |
| 750 | def test(verbosity=2): |
| 751 | ''' |
| 752 | Run all the tests in the test suite. |
| 753 | ''' |
| 754 | ne3.print_info() |
| 755 | return unittest.TextTestRunner(verbosity=verbosity).run( suite() ) |
| 756 | |
| 757 | |
| 758 | test.__test__ = False |