quartz/content/notes/07-testing.md
Jet Hughes 8a667e5693 update
2022-05-27 14:12:53 +12:00

1.0 KiB

title tags sr-due sr-interval sr-ease
07-testing
cosc202
lecture
2022-06-9 22 270
  • testing

  • test-driven-development

  • unit-testing

  • understand that testing is useful for detecting bugs

  • contrast different types of testting

  • descrive the principle of test driven development

  • explain how unit tests ar developed

  • indicate how languages integreate unit test support

  • apppreiciate limitation of software testing

Flash cards

Testing

what are unit tests::Testing individual pieces of code what are integration tests::tests checking that code works together what are end-to-end tests::tests that check the behaviour of the while program what is the halting problem::you cant fully analyse code using code

TDD

what is TDD::a software dev. methodology where tests are written before code

Unit testing