Exemplo n.º 1
0
        public void AutomaticallyDeleteInstallationLogs_property()
        {
            var dialogModel = new ApplicationDialogModel();

            dialogModel.TestProperty(() => dialogModel.AutomaticallyDeleteInstallationLogs, true);
        }
Exemplo n.º 2
0
        public void KeepNewestInstallationLogsString_property()
        {
            var dialogModel = new ApplicationDialogModel();

            dialogModel.TestProperty(() => dialogModel.KeepNewestInstallationLogsString, "test");
        }
Exemplo n.º 3
0
        public void EnableInstallationLogging_property()
        {
            var dialogModel = new ApplicationDialogModel();

            dialogModel.TestProperty(() => dialogModel.EnableInstallationLogging, true);
        }
Exemplo n.º 4
0
        public void DisableReboot_property()
        {
            var dialogModel = new ApplicationDialogModel();

            dialogModel.TestProperty(() => dialogModel.DisableReboot, true);
        }
Exemplo n.º 5
0
        public void EnableSilentInstallation_property()
        {
            var dialogModel = new ApplicationDialogModel();

            dialogModel.TestProperty(() => dialogModel.EnableSilentInstallation, true);
        }
Exemplo n.º 6
0
        public void Name_property()
        {
            var dialogModel = new ApplicationDialogModel();

            dialogModel.TestProperty(() => dialogModel.Name, "test");
        }
Exemplo n.º 7
0
        public void OpenLogFolderCommand_property()
        {
            var dialogModel = new ApplicationDialogModel();

            dialogModel.TestProperty(() => dialogModel.OpenLogFolderCommand, new TestCommand(), PropertyTestSettings.IsDirtyIgnored | PropertyTestSettings.IsReadOnlyIgnored);
        }