@@ -308,6 +308,14 @@ public void testFileExtensionWithCurrency() {
308308 );
309309 }
310310
311+ @ Test
312+ public void testFileExtensionWithDateTimeSymbols () {
313+ this .fileExtensionAndCheck (
314+ SpreadsheetCellValueKind .DATE_TIME_SYMBOLS ,
315+ "date-time-symbols"
316+ );
317+ }
318+
311319 @ Test
312320 public void testFileExtensionWithDecimalNumberSymbols () {
313321 this .fileExtensionAndCheck (
@@ -316,6 +324,70 @@ public void testFileExtensionWithDecimalNumberSymbols() {
316324 );
317325 }
318326
327+ @ Test
328+ public void testFileExtensionWithFormattedValue () {
329+ this .fileExtensionAndCheck (
330+ SpreadsheetCellValueKind .FORMATTED_VALUE ,
331+ "formatted-value"
332+ );
333+ }
334+
335+ @ Test
336+ public void testFileExtensionWithFormatter () {
337+ this .fileExtensionAndCheck (
338+ SpreadsheetCellValueKind .FORMATTER ,
339+ "formatter"
340+ );
341+ }
342+
343+ @ Test
344+ public void testFileExtensionWithFormula () {
345+ this .fileExtensionAndCheck (
346+ SpreadsheetCellValueKind .FORMULA ,
347+ "formula"
348+ );
349+ }
350+
351+ @ Test
352+ public void testFileExtensionWithLocale () {
353+ this .fileExtensionAndCheck (
354+ SpreadsheetCellValueKind .LOCALE ,
355+ "locale"
356+ );
357+ }
358+
359+ @ Test
360+ public void testFileExtensionWithParser () {
361+ this .fileExtensionAndCheck (
362+ SpreadsheetCellValueKind .PARSER ,
363+ "parser"
364+ );
365+ }
366+
367+ @ Test
368+ public void testFileExtensionWithStyle () {
369+ this .fileExtensionAndCheck (
370+ SpreadsheetCellValueKind .STYLE ,
371+ "style"
372+ );
373+ }
374+
375+ @ Test
376+ public void testFileExtensionWithValidator () {
377+ this .fileExtensionAndCheck (
378+ SpreadsheetCellValueKind .VALIDATOR ,
379+ "validator"
380+ );
381+ }
382+
383+ @ Test
384+ public void testFileExtensionWithValue () {
385+ this .fileExtensionAndCheck (
386+ SpreadsheetCellValueKind .VALUE ,
387+ "value"
388+ );
389+ }
390+
319391 @ Test
320392 public void testFileExtensionWithValueType () {
321393 this .fileExtensionAndCheck (
0 commit comments