~ubuntu-branches/ubuntu/quantal/pixelmed/quantal

« back to all changes in this revision

Viewing changes to com/pixelmed/test/TestDicomDirectory_AllTests.java

  • Committer: Package Import Robot
  • Author(s): Mathieu Malaterre
  • Date: 2011-10-26 15:58:36 UTC
  • mfrom: (1.2.5)
  • Revision ID: package-import@ubuntu.com-20111026155836-twt2wlpmu9zhk2s1
Tags: 20110928-1
* New upstream
* remove ioexception.patch applied upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright (c) 2001-2011, David A. Clunie DBA Pixelmed Publishing. All rights reserved. */
 
2
 
 
3
package com.pixelmed.test;
 
4
 
 
5
import com.pixelmed.dicom.*;
 
6
 
 
7
import junit.framework.*;
 
8
 
 
9
public class TestDicomDirectory_AllTests extends TestCase {
 
10
        
 
11
        public static Test suite() {
 
12
                TestSuite suite = new TestSuite("All JUnit Tests");
 
13
                suite.addTest(TestDicomDirectoryRecordFactory.suite());
 
14
                suite.addTest(TestDicomDirectoryRecordSortOrder.suite());
 
15
                return suite;
 
16
        }
 
17
        
 
18
}