File indexing completed on 2024-05-12 04:37:34

0001 {% load kdev_filters %}
0002 <?php
0003 
0004 {% block license_header %}
0005 {% if license %}
0006 /*
0007 
0008 {{ license|lines_prepend:" * " }}
0009  */
0010 {% endif %}
0011 {% endblock license_header %}
0012 
0013 
0014 class {{ name }} extends PHPUnit_Framework_TestCase
0015 {
0016     {% for case in testCases %}
0017 
0018     public function test{{ case|capfirst }}()
0019     {
0020 
0021 
0022     }
0023 
0024     {% endfor %}
0025 }
0026 
0027 
0028 ?>