public void Init_WorksWithRootArray() { var rootConfig = new RootConfig(); rootConfig.Root2.Length.Should().Be(2); rootConfig.Root2[0].Should().Be("RootArray0"); rootConfig.Root2[1].Should().Be("RootArray1"); }
public void Init_WorksWithRootBool() { var rootConfig = new RootConfig(); rootConfig.Root3.Should().BeTrue(); }
public void Init_WorksWithRootString() { var rootConfig = new RootConfig(); rootConfig.Root1.Should().Be("RootValue1"); }