-
Week 12- Test Driven Development
During week 12, we learned about test driven development. Test driven development is a testing method that outlines what functions need to be tested, writes the tests, then writes the code. It is an iterative process that goes through each test one at a time, building on what is already written. In class, we practiced…
-
Week 10- Stubs and Mocks
During week 10, we experimented with stubs and mocks. Stubs and mocks are two forms of testing doubles that allow a team to write tests before the whole program has been written. Stubs and mocks simulate the code’s fleshed out methods and allow for testing methods to be written in advance. Stubs are methods or…
-
Week 8: Path Testing
This week, our class learned about path testing. It is a white box testing method (meaning we do not actually run the source code) that tests to make sure every specification is met and helps to create an outline for writing test cases. Each line of code is represented by a node and each progression…
-
Week 6: Boundary Value vs Equivalence Class Testing
This week we learned about boundary value testing and equivalence class testing. Boundary value testing focuses on making sure the values in, out, and around the expected boundary works as it should. Equivalence class testing does the same, but also tests the function itself. I wanted to know more about the two methods and found…
-
Hello
Welcome! This is my blog for CS-443 Software Quality Assurance and Testing!