-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathTestResult.cs
More file actions
38 lines (32 loc) · 1.04 KB
/
TestResult.cs
File metadata and controls
38 lines (32 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using System;
using System.ComponentModel;
using System.Drawing;
namespace utPLSQL
{
internal class TestResult
{
public Bitmap Icon { get; set; }
public string Package { get; set; }
public string Procedure { get; set; }
public decimal Time { get; set; }
internal string Id { get; set; }
internal string Status { get; set; }
internal DateTime Start { get; set; }
internal DateTime End { get; set; }
internal string Owner { get; set; }
internal string Name { get; set; }
internal string Description { get; set; }
internal string Error { get; set; }
internal BindingList<Expectation> failedExpectations = new BindingList<Expectation>();
}
internal class Expectation
{
internal Expectation(string message, string caller)
{
this.Message = message;
this.Caller = caller.Replace("s*", "\n");
}
public string Message { get; set; }
public string Caller { get; set; }
}
}