You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The existing AtataContextCleanUpEvent class became marked as obsolete. It should be replaced mostly with AtataContextDeInitEvent. In cases when you do some final stuff, like processing artifacts, you can rather consider subscribing on AtataContextDeInitCompletedEvent.
A couple of event handler classes were renamed (old remain as obsolete):
The AtataContextBuilder configuration methods were also changed (old remain as obsolete). The goal is to move event handling configuration functionality to a more logical place, which is EventSubscriptions.
The changes should not affect many of users, as the above classes and methods are not often used directly, but rather UseAllNUnitFeatures method is used, which encapsulates enabling of Atata NUnit features by calling those configuration methods as well.
Additionally in a log "Clean up AtataContext" section was changed to "Deinitialize AtataContext".
The text was updated successfully, but these errors were encountered:
The existing
AtataContextCleanUpEvent
class became marked as obsolete. It should be replaced mostly withAtataContextDeInitEvent
. In cases when you do some final stuff, like processing artifacts, you can rather consider subscribing onAtataContextDeInitCompletedEvent
.A couple of event handler classes were renamed (old remain as obsolete):
AddArtifactsToNUnitTestContextOnCleanUpEventHandler
->AddArtifactsToNUnitTestContextEventHandler
AddDirectoryFilesToNUnitTestContextOnCleanUpEventHandler
->AddDirectoryFilesToNUnitTestContextEventHandler
LogNUnitErrorOnCleanUpEventHandler
->LogNUnitErrorEventHandler
TakePageSnapshotOnNUnitErrorOnCleanUpEventHandler
->TakePageSnapshotOnNUnitErrorEventHandler
TakeScreenshotOnNUnitErrorOnCleanUpEventHandler
->TakeScreenshotOnNUnitErrorEventHandler
The
AtataContextBuilder
configuration methods were also changed (old remain as obsolete). The goal is to move event handling configuration functionality to a more logical place, which isEventSubscriptions
.LogNUnitError
->EventSubscriptions.LogNUnitError
TakeScreenshotOnNUnitError
->EventSubscriptions.TakeScreenshotOnNUnitError
TakePageSnapshotOnNUnitError
->EventSubscriptions.TakePageSnapshotOnNUnitError
OnCleanUpAddArtifactsToNUnitTestContext
->EventSubscriptions.AddArtifactsToNUnitTestContext
OnCleanUpAddDirectoryFilesToNUnitTestContext
->EventSubscriptions.AddDirectoryFilesToNUnitTestContext
The changes should not affect many of users, as the above classes and methods are not often used directly, but rather
UseAllNUnitFeatures
method is used, which encapsulates enabling of Atata NUnit features by calling those configuration methods as well.Additionally in a log "Clean up AtataContext" section was changed to "Deinitialize AtataContext".
The text was updated successfully, but these errors were encountered: