コード例 #1
0
        public void AutomaticallyDeleteInstallationLogs_property()
        {
            var dialogModel = new ApplicationDialogModel();

            dialogModel.TestProperty(() => dialogModel.AutomaticallyDeleteInstallationLogs, true);
        }
コード例 #2
0
        public void KeepNewestInstallationLogsString_property()
        {
            var dialogModel = new ApplicationDialogModel();

            dialogModel.TestProperty(() => dialogModel.KeepNewestInstallationLogsString, "test");
        }
コード例 #3
0
        public void EnableInstallationLogging_property()
        {
            var dialogModel = new ApplicationDialogModel();

            dialogModel.TestProperty(() => dialogModel.EnableInstallationLogging, true);
        }
コード例 #4
0
        public void DisableReboot_property()
        {
            var dialogModel = new ApplicationDialogModel();

            dialogModel.TestProperty(() => dialogModel.DisableReboot, true);
        }
コード例 #5
0
        public void EnableSilentInstallation_property()
        {
            var dialogModel = new ApplicationDialogModel();

            dialogModel.TestProperty(() => dialogModel.EnableSilentInstallation, true);
        }
コード例 #6
0
        public void Name_property()
        {
            var dialogModel = new ApplicationDialogModel();

            dialogModel.TestProperty(() => dialogModel.Name, "test");
        }
コード例 #7
0
        public void OpenLogFolderCommand_property()
        {
            var dialogModel = new ApplicationDialogModel();

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