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
{{ message }}
This repository has been archived by the owner on Oct 2, 2024. It is now read-only.
Arne Halvorsen edited this page Jun 6, 2021
·
12 revisions
Work in progress
Realizing a system to run unit tests on by implementing ISystemConfiguration<World>
Realizing a system(s) to run unit tests on requires minimal two steps:
Implementing at least one class with the interface ISystemConfiguration<World> where World is the world type.
Decorate each ISystemConfiguration<World> implementation with at least one SysCon attribute: Each attribute realize a system using the implementation it decorate.
About implementing the ISystemConfiguration<World> interface
This interface declares three methods:
IConfigurationGetConfiguration(SysConmeta);
it provides the configuration needed to configure the system. It get passed the attribute object representing the system configure so can use the information given in the attribute for system to realize.
About realizing system(s) to run unit tests on with the SysCon class attribute