Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,14 @@ public void testFileExtensionWithCurrency() {
);
}

@Test
public void testFileExtensionWithDateTimeSymbols() {
this.fileExtensionAndCheck(
SpreadsheetCellValueKind.DATE_TIME_SYMBOLS,
"date-time-symbols"
);
}

@Test
public void testFileExtensionWithDecimalNumberSymbols() {
this.fileExtensionAndCheck(
Expand All @@ -316,6 +324,70 @@ public void testFileExtensionWithDecimalNumberSymbols() {
);
}

@Test
public void testFileExtensionWithFormattedValue() {
this.fileExtensionAndCheck(
SpreadsheetCellValueKind.FORMATTED_VALUE,
"formatted-value"
);
}

@Test
public void testFileExtensionWithFormatter() {
this.fileExtensionAndCheck(
SpreadsheetCellValueKind.FORMATTER,
"formatter"
);
}

@Test
public void testFileExtensionWithFormula() {
this.fileExtensionAndCheck(
SpreadsheetCellValueKind.FORMULA,
"formula"
);
}

@Test
public void testFileExtensionWithLocale() {
this.fileExtensionAndCheck(
SpreadsheetCellValueKind.LOCALE,
"locale"
);
}

@Test
public void testFileExtensionWithParser() {
this.fileExtensionAndCheck(
SpreadsheetCellValueKind.PARSER,
"parser"
);
}

@Test
public void testFileExtensionWithStyle() {
this.fileExtensionAndCheck(
SpreadsheetCellValueKind.STYLE,
"style"
);
}

@Test
public void testFileExtensionWithValidator() {
this.fileExtensionAndCheck(
SpreadsheetCellValueKind.VALIDATOR,
"validator"
);
}

@Test
public void testFileExtensionWithValue() {
this.fileExtensionAndCheck(
SpreadsheetCellValueKind.VALUE,
"value"
);
}

@Test
public void testFileExtensionWithValueType() {
this.fileExtensionAndCheck(
Expand Down
Loading