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.pop3;
018    
019    /**
020     * @author <a href="mailto:commons-dev@apache.org">[Net]</a>
021     * @version $Id: TestSetupParameters.java 658518 2008-05-21 01:04:30Z sebb $
022     *
023     * The POP3* tests all presume the existence of the following parameters:
024     *   mailserver: localhost (running on the default port 110)
025     *   account: username=test; password=password
026     *   account: username=alwaysempty; password=password.
027     *   mail: At least four emails in the test account and zero emails
028     *         in the alwaysempty account
029     *
030     * If this won't work for you, you can change these parameters in the
031     * TestSetupParameters class.
032     *
033     * The tests were originally run on a default installation of James.
034     * Your mileage may vary based on the POP3 server you run the tests against.
035     * Some servers are more standards-compliant than others.
036     */
037    public class TestSetupParameters
038    {
039        public static final String user = "test";
040        public static final String emptyuser = "alwaysempty";
041        public static final String password = "password";
042    
043        public static final String mailhost = "localhost";
044    
045         //Cannot be instantiated
046        private TestSetupParameters()
047        {}
048    }