mirror of
https://github.com/schrodinger/pymol-open-source.git
synced 2026-06-04 20:04:21 +08:00
17 lines
284 B
Python
Executable File
17 lines
284 B
Python
Executable File
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""Executable module to test unittest-xml-reporting.
|
|
"""
|
|
|
|
import unittest
|
|
import xmlrunner
|
|
|
|
class XMLTestRunnerTestCase(unittest.TestCase):
|
|
"""XMLTestRunner test case.
|
|
"""
|
|
pass
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|