diff options
Diffstat (limited to 'src/test/burn/WixTestTools')
| -rw-r--r-- | src/test/burn/WixTestTools/PackageVerifier.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/test/burn/WixTestTools/PackageVerifier.cs b/src/test/burn/WixTestTools/PackageVerifier.cs index 4545b9ec..76bc17ab 100644 --- a/src/test/burn/WixTestTools/PackageVerifier.cs +++ b/src/test/burn/WixTestTools/PackageVerifier.cs | |||
| @@ -63,6 +63,12 @@ namespace WixTestTools | |||
| 63 | return row.Value; | 63 | return row.Value; |
| 64 | } | 64 | } |
| 65 | 65 | ||
| 66 | public string GetControlText(string dialog, string control) | ||
| 67 | { | ||
| 68 | var row = this.WiData.Tables["Control"].Rows.Cast<ControlRow>().Single(r => r.Dialog == dialog && r.Control == control); | ||
| 69 | return row.Text; | ||
| 70 | } | ||
| 71 | |||
| 66 | public bool IsInstalled() | 72 | public bool IsInstalled() |
| 67 | { | 73 | { |
| 68 | var productCode = this.GetProperty("ProductCode"); | 74 | var productCode = this.GetProperty("ProductCode"); |
