public void HelpConfiguration_Constructor_Properties_Initialized() { //------------Setup for test-------------------------- //------------Execute Test--------------------------- var helpConfiguration = new HelpConfiguration(); //------------Assert Results------------------------- Assert.IsNotNull(helpConfiguration.IsCollapsed); Assert.IsInstanceOfType(helpConfiguration.IsCollapsed, typeof(ConcurrentDictionarySafe<Type, bool>)); }
public UserConfigurationService(string filePath) : base(filePath) { Help = new HelpConfiguration(); }