Subversion Repositories javautils

Compare Revisions

No changes between revisions

Regard whitespace Rev 8 → Rev 9

/ViaThinkSoft Java Utils/test/eMailTests/TestConfiguration.java
0,0 → 1,37
package eMailTests;
 
// Statische Klasse, die unsere Konfiguration für Tests verwaltet.
// Ginge auch als Singleton
 
public final class TestConfiguration {
public static String getSpamAddress() {
// Gott habe Mitleid mit dem Eigentümer dieser E-Mail-Adresse...
return "b973768@owlpic.com";
 
// Eine Wegwerfadresse für manuelle Tests kann auf
// www.10minutemail.com erstellt werden.
}
public static String getSmtpHost() {
return "";
}
public static String getSmtpUsername() {
return "";
}
public static String getSmtpPassword() {
return "";
}
public static int getSmtpPort() {
return 25;
}
public static String getMailFrom() {
return getSpamAddress();
}
private TestConfiguration() {
}
}
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property