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
Currently the DSL collects tests into a tree hierarchy of suite -> case -> unit, and eventually may become suite -> case -> unit -> test (see layer issue). A more elegant solution may be to have a flat list, such that each test object has everything it needs to run on it's own, and a group field to track how it's is group together with other tests. I think this would greatly simplify the underlying code base.
The test object would be constructed something like:
Currently the DSL collects tests into a tree hierarchy of
suite -> case -> unit
, and eventually may becomesuite -> case -> unit -> test
(see layer issue). A more elegant solution may be to have a flat list, such that each test object has everything it needs to run on it's own, and agroup
field to track how it's is group together with other tests. I think this would greatly simplify the underlying code base.The test object would be constructed something like:
The text was updated successfully, but these errors were encountered: