Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 632 Bytes

README.md

File metadata and controls

11 lines (10 loc) · 632 Bytes

happytesting

There are JUnit test examples from basic style to parameterized test and Property-based testing.

Index

  • SampleLogic.java : This class is tested by following test classes.
  • _01NormalJunit.java : Simple test. It is not recommended.
  • _02ReadableJunit.java : It has been introduced in Readable code.
  • _03Paramaterized.java : One example of Parameterized test. This is recommended for general.
  • _04RandomTest.java : I think this is a simple property-based testing.
  • _05QuickCheck.java : Using junit-quickcheck.
  • _06BruteForce.java : It counters the serious test engineer who deny random values.