blob: 0f1b4e531f1fe44b79a7497eb35fdd2116626691 [file] [log] [blame]
/*
* Copyright 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.google.gwt.cell.client;
import com.google.gwt.i18n.client.DateTimeFormat;
import com.google.gwt.i18n.client.DateTimeFormat.PredefinedFormat;
import java.util.Date;
/**
* Tests for {@link DateCell}.
*/
public class DateCellTest extends CellTestBase<Date> {
@Override
protected Cell<Date> createCell() {
return new DateCell(DateTimeFormat.getFormat(PredefinedFormat.DATE_MEDIUM));
}
@Override
@SuppressWarnings("deprecation")
protected Date createCellValue() {
return new Date(2010 - 1900, 0, 1);
}
@Override
protected boolean dependsOnSelection() {
return false;
}
@Override
protected String[] getConsumedEvents() {
return null;
}
@Override
protected String getExpectedInnerHtml() {
return "Jan 1, 2010";
}
@Override
protected String getExpectedInnerHtmlNull() {
return "";
}
}