-
Notifications
You must be signed in to change notification settings - Fork 0
/
ReliabilityTesting.cs
130 lines (101 loc) · 3.55 KB
/
ReliabilityTesting.cs
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WFA_Test
{
public partial class mainMenu : Form
{
public mainMenu()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void applicationTypeToolStripMenuItem_Click(object sender, EventArgs e)
{
}
private void capabilityMaturityIndexToolStripMenuItem_Click_1(object sender, EventArgs e)
{
}
private void shortcutDefectDensityToolStripMenuItem_Click_1(object sender, EventArgs e)
{
this.Hide();
shortcut shortcutWindow = new shortcut(this);
shortcutWindow.ShowDialog();
}
private void aMSAAPM2ModelToolStripMenuItem_Click(object sender, EventArgs e)
{
}
private void exponentialModelToolStripMenuItem_Click(object sender, EventArgs e)
{
}
private void predictionModelsToolStripMenuItem_Click(object sender, EventArgs e)
{
}
private void menuStrip1_ItemClicked(object sender, ToolStripItemClickedEventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
}
private void button1_MouseHover(object sender, EventArgs e)
{
label2.Text = "The AMSAA PM2 utilizes planning parameters that are directly influenced by program management. PM2 reliability" +
" growth planning curves primarily consist of two components—an idealized curve, and MTBF targets";
}
private void button1_MouseLeave(object sender, EventArgs e)
{
label2.Text = "";
}
private void label1_Click(object sender, EventArgs e)
{
}
private void button2_MouseHover(object sender, EventArgs e)
{
label2.Text = "This model assumes that software defect density is directly related to the application type or industry.";
}
private void button2_MouseLeave(object sender, EventArgs e)
{
label2.Text = "";
}
private void button3_MouseHover(object sender, EventArgs e)
{
label2.Text = "This model assumes that software defect density is directly related to the SEI CMMI " +
"level.";
}
private void button3_MouseLeave(object sender, EventArgs e)
{
label2.Text = "";
}
private void button5_MouseHover(object sender, EventArgs e)
{
label2.Text = "This exponential model is used to determine when the predicted defects will become observed faults.";
}
private void button5_MouseLeave(object sender, EventArgs e)
{
label2.Text = "";
}
private void button4_MouseHover(object sender, EventArgs e)
{
label2.Text = "This model assumes that the defect density is a function of the number of risks versus " +
"strengths regarding this release of the software";
}
private void button4_MouseLeave(object sender, EventArgs e)
{
label2.Text = "";
}
private void button4_Click(object sender, EventArgs e)
{
this.Hide();
shortcut shortcutWindow = new shortcut(this);
shortcutWindow.ShowDialog();
}
}
}