~mapclient.devs/mapclient/stable

« back to all changes in this revision

Viewing changes to tests/plugins/pointcloudserializerstep/pointcloudserializertests.py

  • Committer: musculoskeletal
  • Date: 2014-06-25 05:38:05 UTC
  • mfrom: (1.6.35 testing)
  • Revision ID: musculoskeletal@bioeng1033-20140625053805-jkqhi5oq74vmlntl
Merging testing into stable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
'''
 
2
MAP Client, a program to generate detailed musculoskeletal models for OpenSim.
 
3
    Copyright (C) 2012  University of Auckland
 
4
    
 
5
This file is part of MAP Client. (http://launchpad.net/mapclient)
 
6
 
 
7
    MAP Client is free software: you can redistribute it and/or modify
 
8
    it under the terms of the GNU General Public License as published by
 
9
    the Free Software Foundation, either version 3 of the License, or
 
10
    (at your option) any later version.
 
11
 
 
12
    MAP Client is distributed in the hope that it will be useful,
 
13
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
    GNU General Public License for more details.
 
16
 
 
17
    You should have received a copy of the GNU General Public License
 
18
    along with MAP Client.  If not, see <http://www.gnu.org/licenses/>..
 
19
'''
 
20
import unittest
 
21
 
 
22
 
 
23
def suite():
 
24
    from plugins.pointcloudserializerstep.test_pointcloudserializer import PointCloudSerializerTestCase
 
25
    tests = unittest.TestSuite()
 
26
    tests.addTests(unittest.TestLoader().loadTestsFromTestCase(PointCloudSerializerTestCase))
 
27
    return tests
 
28
 
 
29
def load_tests(loader, tests, pattern):
 
30
    return suite()
 
31
 
 
32
if __name__ == '__main__':
 
33
    unittest.TextTestRunner().run(suite())