Testing: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 4: Line 4:
* http://cafe.elharo.com/testing/harolds-corollary-to-knuths-law/
* http://cafe.elharo.com/testing/harolds-corollary-to-knuths-law/
* Christian Nelson's SDForum JavaSIG presentation, Oct 6, 2009 [[File:Web Application Testing - Christian Nelson.pdf|Web Application Testing - Christian Nelson]]. Companion source code available at http://svn.carbonfive.com/public/christian/gearlist/branches/sdforum/. README file available at http://svn.carbonfive.com/public/christian/gearlist/branches/sdforum/docs/readme.txt.
* Christian Nelson's SDForum JavaSIG presentation, Oct 6, 2009 [[File:Web Application Testing - Christian Nelson.pdf|Web Application Testing - Christian Nelson]]. Companion source code available at http://svn.carbonfive.com/public/christian/gearlist/branches/sdforum/. README file available at http://svn.carbonfive.com/public/christian/gearlist/branches/sdforum/docs/readme.txt.
* The Art of Software Testing at O'Reilly http://shop.oreilly.com/product/9781118031964.do
* O'Reilly The Art of Software Testing http://shop.oreilly.com/product/9781118031964.do
* Testing the Endpoints of Your REST APIs https://www.infoq.com/presentations/rest-api-testing-postman
* Testing the Endpoints of Your REST APIs https://www.infoq.com/presentations/rest-api-testing-postman
* [https://www.amazon.com/xUnit-Test-Patterns-Refactoring-Addison-Wesley-ebook/dp/B004X1D36K/ref=sr_1_3 xUnit Test Patterns] by Gerard Meszaros.
* [https://www.amazon.com/xUnit-Test-Patterns-Refactoring-Addison-Wesley-ebook/dp/B004X1D36K/ref=sr_1_3 xUnit Test Patterns] by Gerard Meszaros.

Revision as of 18:23, 8 November 2021

External

Internal

Fundamentals and Conventions

  • Access classes are BAD. Write test classes to belong the same package as the tested classes, this way package private functionality can be tested even if the test classes are physically in a different location.
  • A ...TestBase is an abstract class that has a protected abstract get...ToTest() method.
  • If in developing a SomethingBase we want to test the base behavior at its own layer, then conventionally we should use a SomethingTestBase (and not a SomethingBaseTestBase).

Concepts

Testing Concepts

To Process



[Next]