2021.01.18 ~ 2021.01.22 TestCase 교육 # 시작하는방법 1) 폴더안에 go파일 하나 생성한 후 2) ctrl+shift+T 클릭하면 3) 파일명_test.go 파일 생성 4) then을 수행하기 위한 준비 goland 실행 -> Terminal에 다음 명령어를 입력하여 패키지 설치 go get github.com/stretchr/testify/assert 5) 파일명_test.go 파일 import에 추가 import ( "github.com/stretchr/testify/assert" "testing" ) 6) given-when-then 패턴 사용 매번 "//" 주석으로 분리해서 코드 작성 func 함수명(t *testing.T) { //given //when //then }..