public void Check_Add_Ship() { //arrange Kustia_Trading_Agency_Management_BL kta_bl = new Kustia_Trading_Agency_Management_BL(); Kustia_Trading_Agency_Management_Entity information1 = new Kustia_Trading_Agency_Management_Entity(); //act information1.ship_name = "Sundorbon"; information1.amount = "500"; bool t = kta_bl.addShip(information1); //assert Assert.AreEqual(true, t); }
private void button1_Click_1(object sender, EventArgs e) { Kustia_Trading_Agency_Management_BL kta_bl = new Kustia_Trading_Agency_Management_BL(); Kustia_Trading_Agency_Management_Entity information1 = new Kustia_Trading_Agency_Management_Entity(); information1.ship_name = textBox1.Text; information1.amount = textBox2.Text; if (kta_bl.addShip(information1)) { textBox1.Text = ""; textBox2.Text = ""; } else { MessageBox.Show("not successful"); } }