public void AppConfiguration_Can_Create_Template_Config_File()
        {
            //Arrange
            string templateFilePath = "Stundenlisten.AppConfiguration.template.toml";

            //Act
            CurrentConfiguration.CreateTemplateConfig(templateFilePath);

            //Assert
            Assert.IsTrue(File.Exists(templateFilePath));
        }