Mercurial > hg > ltpda
annotate m-toolbox/classes/+utils/@models/built_in_model_unittest_template.m @ 0:f0afece42f48
Import.
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 23 Nov 2011 19:22:13 +0100 |
parents | |
children |
rev | line source |
---|---|
0 | 1 % TEST_<CLASS>_MODEL_<NAME> runs tests for the <CLASS> built-in model <NAME>. |
2 % | |
3 % VERSION: $Id: built_in_model_unittest_template.m,v 1.1 2011/04/29 07:05:54 hewitson Exp $ | |
4 % | |
5 classdef test_<CLASS>_model_<NAME> < ltpda_builtin_model_utp | |
6 | |
7 methods | |
8 function utp = test_<CLASS>_model_<NAME>() | |
9 utp = utp@ltpda_builtin_model_utp(); | |
10 utp.className = '<CLASS>'; | |
11 utp.methodName = '<NAME>'; | |
12 utp.modelFilename = '<CLASS>_model_<NAME>'; | |
13 end | |
14 end | |
15 | |
16 end |