512 B
512 B
ADDED Requirements
Requirement: ExcelService shall support writing long values
The ExcelService class SHALL provide a WriteExcel overload that accepts a long value.
Scenario: WriteExcel with valid long value
- WHEN
WriteExcel(string fileName, long value, int row, int column)is called with valid parameters - THEN the system SHALL write the numeric
longvalue to the specified cell - AND the cell type in Excel SHALL be numeric
- AND the file SHALL be saved successfully