-
Notifications
You must be signed in to change notification settings - Fork 45
Open
Labels
Milestone
Description
Tasks:
- Add
AfterEachto teardown workbook after each test - Add instance to
BeforeEachandAfterEachmethods to allow passing in workbook helper instance - Separate from core into extensions (
WBProxyandScenario) - Use copy of workbook in case it's already open or unexpected things happen
- Explore using standard
WBProxyin otherIWBProxyimplementations. (lots of overlap currently)
BeforeEach and AfterEach goal:
Dim Proxy As New WBProxy
' Initial setup/mapping...
Suite.BeforeEach "Setup", Instance:=Proxy
Suite.AfterEach "Teardown", Instance:=ProxyCauses an issue with current arguments implementation, since ParamArray cannot be used with other Optional variables (Instance), but ByRef with BeforeEach and AfterEach is a goal, so ParamArray might not be useful anyways.