FLAT UNIT TESTING

Braden Steffaniak - Mar 3, 2017

XUNIT TESTING

xUnit testing is a common paradigm of unit testing that was birthed from Smalltalk's SUnit. xUnit testing revolves around a few common testing structures: test runners, test cases, test fixtures, and test suites.

  • Test runners: program that runs xUnit tests and reports the results
  • Test cases: elemental case in which suites are built with
  • Test fixtures: a state needed to run a test
  • Test suites: set of tests that share same fixture

FLAT'S UNIT TESTING LIBRARY

Flat's unit testing library is named Test. Test follows the xUnit paradigm of having test runners, test cases, test fixtures, and test suites.

POSTS DOCUMENTATION