mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-26 20:03:10 +00:00
35 lines
No EOL
541 B
Python
35 lines
No EOL
541 B
Python
{% load kdev_filters %}
|
|
{% block license_header %}
|
|
{% if license %}
|
|
#
|
|
|
|
{{ license|lines_prepend:"# " }}
|
|
#
|
|
{% endif %}
|
|
{% endblock license_header %}
|
|
|
|
|
|
import unittest
|
|
|
|
|
|
class {{ name }}(unittest.TestCase):
|
|
def setUp(self):
|
|
# Called before the first testfunction is executed
|
|
pass
|
|
|
|
|
|
def tearDown(self):
|
|
# Called after the last testfunction was executed
|
|
pass
|
|
|
|
|
|
{% for case in testCases %}
|
|
def test_{{ case }}(self):
|
|
pass
|
|
|
|
|
|
{% endfor %}
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main() |