julianGoh17 / simple-e2e

A modular end to end framework to easily create tests and debug failures.
0 stars 0 forks source link

Create Yaml to Test Conversion #1

Closed julianGoh17 closed 4 years ago

julianGoh17 commented 4 years ago

Introduce the ability to map a YAML file to a struct of Test Stages and Test Steps.

Create Test Step and define how users will define the test actions that go with that step Create a Test Step which will allow people to define a human readable string that will be mapped to a method that the user has defined. This Test Step should also be mutable, so a user should be able to define:

This is a test step for 'api'

The user should then be able to retrieve 'api' from the teststep.

Need to create the mechanisms which will allow users to create the method mapped to the string.

Test Stage: Create the ability for a user to define as many test stages that they want and the ability for the framework to be able to run a specific step or a set of steps.