Notes From CS Undergrad Courses FSU
This project is maintained by awa03
| Phase | Desc |
|---|---|
| Analysis | Product Owner, Manager, Etc |
| Design | Ui / UX |
| Development | Front / Back Engineer |
| Testing | Solutions Architect |
| Deployment | Data Administration |
| Maintenance | Users, Testers Support Managers |
[!IMPORTANT] Arrange, Act, Assert
[TestMethod] Attributevoid[TestMethod]
public void Test(){
Assert.AreEqual(expectedVal, param1);
Assert.IsTrue(param1);
Assert.IsFalse(param1);
Assert.IsNull(param1);
Assert.ThrowsException</*Exception*/>(() => val);
}
// Test if values are what is expected...