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

0001 {% load kdev_filters %}
0002 {% include "license_header_cpp.txt" %}
0003 
0004 #include <CppUTest/TestHarness.h>
0005 
0006 
0007 TEST_GROUP({{ name }}) {
0008 
0009 
0010 };
0011 
0012 {% for case in testCases %}
0013 
0014 TEST({{ name }}, {{ case }})
0015 {
0016 
0017 
0018 }
0019 
0020 {% endfor %}