public void AutomaticallyDeleteInstallationLogs_property() { var dialogModel = new ApplicationDialogModel(); dialogModel.TestProperty(() => dialogModel.AutomaticallyDeleteInstallationLogs, true); }
public void KeepNewestInstallationLogsString_property() { var dialogModel = new ApplicationDialogModel(); dialogModel.TestProperty(() => dialogModel.KeepNewestInstallationLogsString, "test"); }
public void EnableInstallationLogging_property() { var dialogModel = new ApplicationDialogModel(); dialogModel.TestProperty(() => dialogModel.EnableInstallationLogging, true); }
public void DisableReboot_property() { var dialogModel = new ApplicationDialogModel(); dialogModel.TestProperty(() => dialogModel.DisableReboot, true); }
public void EnableSilentInstallation_property() { var dialogModel = new ApplicationDialogModel(); dialogModel.TestProperty(() => dialogModel.EnableSilentInstallation, true); }
public void Name_property() { var dialogModel = new ApplicationDialogModel(); dialogModel.TestProperty(() => dialogModel.Name, "test"); }
public void OpenLogFolderCommand_property() { var dialogModel = new ApplicationDialogModel(); dialogModel.TestProperty(() => dialogModel.OpenLogFolderCommand, new TestCommand(), PropertyTestSettings.IsDirtyIgnored | PropertyTestSettings.IsReadOnlyIgnored); }