@@ -29,7 +29,7 @@ public void setup() throws IOException, URISyntaxException {
2929 }
3030
3131 @ Test
32- public void gvieStringCell_whenGetCellStringValue_thenReturnStringValue () throws IOException {
32+ public void givenStringCell_whenGetCellStringValue_thenReturnStringValue () throws IOException {
3333 Workbook workbook = new XSSFWorkbook (fileLocation );
3434 Sheet sheet = workbook .getSheetAt (0 );
3535 Row row = sheet .getRow (0 );
@@ -40,7 +40,7 @@ public void gvieStringCell_whenGetCellStringValue_thenReturnStringValue() throws
4040 }
4141
4242 @ Test
43- public void gvieBooleanCell_whenGetCellStringValue_thenReturnBooleanStringValue () throws IOException {
43+ public void givenBooleanCell_whenGetCellStringValue_thenReturnBooleanStringValue () throws IOException {
4444 Workbook workbook = new XSSFWorkbook (fileLocation );
4545 Sheet sheet = workbook .getSheetAt (0 );
4646 Row row = sheet .getRow (0 );
@@ -51,7 +51,7 @@ public void gvieBooleanCell_whenGetCellStringValue_thenReturnBooleanStringValue(
5151 }
5252
5353 @ Test
54- public void gvieNumericCell_whenGetCellStringValue_thenReturnNumericStringValue () throws IOException {
54+ public void givenNumericCell_whenGetCellStringValue_thenReturnNumericStringValue () throws IOException {
5555 Workbook workbook = new XSSFWorkbook (fileLocation );
5656 Sheet sheet = workbook .getSheetAt (0 );
5757 Row row = sheet .getRow (0 );
@@ -63,7 +63,7 @@ public void gvieNumericCell_whenGetCellStringValue_thenReturnNumericStringValue(
6363 }
6464
6565 @ Test
66- public void gvieFormualCell_whenGetCellStringValue_thenReturnOriginalFormulaString () throws IOException {
66+ public void givenFormualCell_whenGetCellStringValue_thenReturnOriginalFormulaString () throws IOException {
6767 Workbook workbook = new XSSFWorkbook (fileLocation );
6868 Sheet sheet = workbook .getSheetAt (0 );
6969 Row row = sheet .getRow (0 );
@@ -74,7 +74,7 @@ public void gvieFormualCell_whenGetCellStringValue_thenReturnOriginalFormulaStri
7474 }
7575
7676 @ Test
77- public void gvieFormualCell_whenGetCellStringValueForFormula_thenReturnOriginalFormulatring () throws IOException {
77+ public void givenFormualCell_whenGetCellStringValueForFormula_thenReturnOriginalFormulatring () throws IOException {
7878 Workbook workbook = new XSSFWorkbook (fileLocation );
7979 Sheet sheet = workbook .getSheetAt (0 );
8080 Row row = sheet .getRow (0 );
0 commit comments