Subversion Repositories javautils

Rev

Rev 9 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
9 daniel-mar 1
package eMailTests;
3 daniel-mar 2
 
3
// Statische Klasse, die unsere Konfiguration für Tests verwaltet.
4
// Ginge auch als Singleton
5
 
6
public final class TestConfiguration {
7
 
21 daniel-mar 8
        // Gott habe Mitleid mit dem Eigentümer dieser E-Mail-Adresse...
9
        // Eine Wegwerfadresse für manuelle Tests kann auf
10
        // www.10minutemail.com erstellt werden.
11
        private static final String SPAMMING_MAIL_ADDRESS = "a1175972@bofthew.com";
3 daniel-mar 12
 
21 daniel-mar 13
        public static String getSpamAddress() {
14
                return SPAMMING_MAIL_ADDRESS;
3 daniel-mar 15
        }
16
 
17
        private TestConfiguration() {
18
        }
19
}