ICU-3301 remove tests passing null
X-SVN-Rev: 15482
This commit is contained in:
parent
1416267a71
commit
544bbc2977
@ -1009,15 +1009,11 @@ public class DateFormatTest extends com.ibm.icu.dev.test.TestFmwk {
|
|||||||
|
|
||||||
Locale foo = new Locale("fu", "FU", "BAR");
|
Locale foo = new Locale("fu", "FU", "BAR");
|
||||||
rb = null;
|
rb = null;
|
||||||
sym = new DateFormatSymbols(rb, foo);
|
|
||||||
sym = new DateFormatSymbols(GregorianCalendar.class, foo);
|
sym = new DateFormatSymbols(GregorianCalendar.class, foo);
|
||||||
sym = new DateFormatSymbols((Class)null, foo);
|
|
||||||
sym = new DateFormatSymbols((Calendar)null, foo);
|
|
||||||
sym.equals(null);
|
sym.equals(null);
|
||||||
|
|
||||||
sym = new ChineseDateFormatSymbols();
|
sym = new ChineseDateFormatSymbols();
|
||||||
sym = new ChineseDateFormatSymbols(cal, foo);
|
sym = new ChineseDateFormatSymbols(new ChineseCalendar(), foo);
|
||||||
sym = new ChineseDateFormatSymbols(null, foo);
|
|
||||||
|
|
||||||
StringBuffer buf = new StringBuffer();
|
StringBuffer buf = new StringBuffer();
|
||||||
FieldPosition pos = new FieldPosition(0);
|
FieldPosition pos = new FieldPosition(0);
|
||||||
|
Loading…
Reference in New Issue
Block a user