001 /*
002 * Licensed to the Apache Software Foundation (ASF) under one or more
003 * contributor license agreements. See the NOTICE file distributed with
004 * this work for additional information regarding copyright ownership.
005 * The ASF licenses this file to You under the Apache License, Version 2.0
006 * (the "License"); you may not use this file except in compliance with
007 * the License. You may obtain a copy of the License at
008 *
009 * http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017 package org.apache.commons.net.ftp.parser;
018
019 import junit.framework.Test;
020 import junit.framework.TestSuite;
021
022 /**
023 * @author scohen
024 *
025 * To change the template for this generated type comment go to
026 * Window - Preferences - Java - Code Generation - Code and Comments
027 */
028 public class AllTests {
029
030 public static Test suite() {
031 TestSuite suite =
032 new TestSuite("Test for org.apache.commons.net.ftp.parser");
033 //$JUnit-BEGIN$
034 suite.addTest(FTPTimestampParserImplTest.suite());
035 suite.addTest(OS2FTPEntryParserTest.suite());
036 suite.addTest(VMSFTPEntryParserTest.suite());
037 suite.addTest(UnixFTPEntryParserTest.suite());
038 suite.addTestSuite(DefaultFTPFileEntryParserFactoryTest.class);
039 suite.addTest(EnterpriseUnixFTPEntryParserTest.suite());
040 suite.addTest(OS400FTPEntryParserTest.suite());
041 suite.addTest(NTFTPEntryParserTest.suite());
042 suite.addTest(MVSFTPEntryParserTest.suite());
043 suite.addTest(NetwareFTPEntryParserTest.suite());
044
045 //$JUnit-END$
046 return suite;
047 }
048 }