01: /*
02: * Conditions Of Use
03: *
04: * This software was developed by employees of the National Institute of
05: * Standards and Technology (NIST), and others.
06: * This software is has been contributed to the public domain.
07: * As a result, a formal license is not needed to use the software.
08: *
09: * This software is provided "AS IS."
10: * NIST MAKES NO WARRANTY OF ANY KIND, EXPRESS, IMPLIED
11: * OR STATUTORY, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTY OF
12: * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT
13: * AND DATA ACCURACY. NIST does not warrant or make any representations
14: * regarding the use of the software or the results thereof, including but
15: * not limited to the correctness, accuracy, reliability or usefulness of
16: * the software.
17: *
18: *
19: */
20: package test.unit.gov.nist.javax.sip.parser;
21:
22: import junit.framework.*;
23:
24: /** A test suite for all parser tests
25:
26: @author Dan Muresan
27: */
28: public class ParserTestSuite extends TestSuite {
29:
30: public static void main(String[] args) {
31: junit.textui.TestRunner.run(new ParserTestSuite(
32: "ParserTestSuite"));
33: System.exit(0);
34: }
35:
36: public ParserTestSuite(String name) {
37: super (name);
38: addTestSuite(AcceptLanguageParserTest.class);
39: addTestSuite(AddressParserTest.class);
40: addTestSuite(AllowEventsParserTest.class);
41: addTestSuite(AllowParserTest.class);
42: addTestSuite(AuthenticationInfoParserTest.class);
43: addTestSuite(AuthorizationParserTest.class);
44: addTestSuite(CallIDParserTest.class);
45: addTestSuite(CallInfoParserTest.class);
46: addTestSuite(ContactParserTest.class);
47: addTestSuite(ContentDispositionParserTest.class);
48: addTestSuite(ContentEncodingParserTest.class);
49: addTestSuite(ContentLanguageParserTest.class);
50: addTestSuite(ContentLengthParserTest.class);
51: addTestSuite(ContentTypeParserTest.class);
52: addTestSuite(CSeqParserTest.class);
53: addTestSuite(DateParserTest.class);
54: addTestSuite(ErrorInfoParserTest.class);
55: addTestSuite(EventParserTest.class);
56: addTestSuite(ExpiresParserTest.class);
57: addTestSuite(FromParserTest.class);
58: addTestSuite(InReplyToParserTest.class);
59: addTestSuite(MaxForwardsParserTest.class);
60: addTestSuite(MimeVersionParserTest.class);
61: addTestSuite(MinExpiresParserTest.class);
62: addTestSuite(OrganizationParserTest.class);
63: addTestSuite(ReferToParserTest.class);
64: addTestSuite(URLParserTest.class);
65: addTestSuite(ViaParserTest.class);
66: addTestSuite(TimeStampParserTest.class);
67: }
68:
69: public static Test suite() {
70: return new ParserTestSuite("ParserTestSuite");
71: }
72:
73: }
|