1. 개요

1.1 TDD란

Untitled

1.2 test coverage 에 따른 구분

Untitled

2. BDD

3. PDD

def add(a:int, b:int):
	return a + b
	
exampled based a = 2, b= 3
property bases a = int(), b()

def divide(a:int, b:int):
		return a // b

example-based test

example-based test

property-based test

property-based test

4. E2E