Finishing the tests for Excel features.
This commit is contained in:
@@ -1,8 +1,21 @@
|
||||
Feature: The Excel API client
|
||||
# ======================== Excel Read method ========================
|
||||
# Scenario: Using the Excel Read method
|
||||
# It is not posible to test this method, because there is no way to know where will be an Excel sheet on the user's machine.
|
||||
# ======================== Excel New method ========================
|
||||
Scenario: Using the Excel New method
|
||||
Given an Excel client
|
||||
When the Excel New method is called
|
||||
Then a new Excel sheet must be created
|
||||
|
||||
# ======================== Excel Write method ========================
|
||||
# Scenario: Using the Excel Write method
|
||||
# It is not posible to test this method, because there is no way to know where will be an Excel sheet on the user's machine.
|
||||
Scenario: Using the Excel Write method
|
||||
Given an Excel client
|
||||
And an Excel sheet
|
||||
When the Excel Write method is called on this sheet to write
|
||||
Then the writing must be successful
|
||||
|
||||
# ======================== Excel Read method ========================
|
||||
Scenario: Using the Excel Read method
|
||||
Given an Excel client
|
||||
And an Excel sheet
|
||||
And the text "churros" text written in the A1 cell
|
||||
When the Excel Read method is called
|
||||
Then the word "churros" must be returned in the position [0][0]
|
||||
Reference in New Issue
Block a user