Mercurial > hg > ltpda
comparison m-toolbox/classes/tests/database/@ltpda_objmeta_table/init.m @ 0:f0afece42f48
Import.
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 23 Nov 2011 19:22:13 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:f0afece42f48 |
---|---|
1 % INIT initialize the unit test class. | |
2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
3 % | |
4 % DESCRIPTION: INIT initialize the unit test class. | |
5 % This method is called before the test methods. | |
6 % | |
7 % CALL: init(); | |
8 % | |
9 % VERSION: $Id: init.m,v 1.2 2011/05/24 19:21:03 ingo Exp $ | |
10 % | |
11 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
12 | |
13 function varargout = init(varargin) | |
14 | |
15 utp = varargin{1}; | |
16 | |
17 % Call super class | |
18 init@ltpda_database(varargin{:}); | |
19 | |
20 % Submit test data | |
21 if ~utp.testRunner.skipRepoTests() | |
22 submitTestDataWithStruct(varargin{:}); | |
23 end | |
24 end | |
25 |