일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- JanusWebRTC
- 깡돼후
- preemption #
- kotlin
- Value too long for column
- 오블완
- mp4fpsmod
- vfr video
- 코루틴 컨텍스트
- PersistenceContext
- 티스토리챌린지
- 개성국밥
- VARCHAR (1)
- 헥사고날아키텍처 #육각형아키텍처 #유스케이스
- 달인막창
- 겨울 부산
- table not found
- taint
- terminal
- Spring Batch
- JanusWebRTCServer
- pytest
- JanusGateway
- JanusWebRTCGateway
- 코루틴 빌더
- PytestPluginManager
- k8s #kubernetes #쿠버네티스
- python
- 자원부족
- tolerated
목록개발/TDD(Test-Driven Development) (4)
너와 나의 스토리
1. 테스트 우선 테스트부터 작성하고 구현하자! 프로그램 설계나 작업 범위 조절에 유용하다. 2. 단언(Assert) 우선 완료된 시스템이 어떨 거라고 정하고 시작. 예: 소켓을 통해 다른 시스템과 통신하려 한다고 가정하자. 요구 조건: 통신을 마친 후 소켓은 닫혀있어야 하고, 소켓에서 문자열 'abc'를 읽어와야 한다. 이를 단언으로 먼저 작성한다. assertTrue(reader.isClosed()); assertEquals("abc", reply.contents()); reply는 어디서 얻어오나? socket에서 얻어온다. -> Socket reader; Buffer reply = reader.contents(); assertTrue(reader.isClosed()); assertEquals("a..
"테스트 주도 개발 Test-Driven Development: By Example" 책에 나오는 예제를 실제로 구현해보자." Money.java public class Money { protected int amount; protected String currency; Money(int amount, String currency) { this.amount = amount; this.currency = currency; } Money times(int multiplier) { return new Money(amount * multiplier, currency); } String currency() { return currency; } static Money dollar(int amount) { retur..
"테스트 주도 개발 Test-Driven Development: By Example" 책에 나오는 예제를 실제로 구현해보자. Money.java package com.example.tdd.money; public abstract class Money { protected int amount; abstract Money times(int multiplier); static Dollar dollar(int amount) { return new Dollar(amount); } static Franc franc(int amount){ return new Franc(amount); } public boolean equals(Object object) { Money money = (Money) object; ret..
"테스트 주도 개발 Test-Driven Development: By Example" 책에 나오는 예제를 실제로 구현해보자. 프로그래밍 순서 빨강 - 실패하는 작은 테스트를 작성한다. 처음에는 컴파일조차 되지 않을 수 있다. 초록 - 빨리 테스트가 통과하게끔 만든다. 이를 위해 어떤 죄악을 저질러도 좋다. 죄악: 테스트 통과만을 위해 복붙 하거나 함수에서 임의의 값을 무조건 리턴하게 구현하는 것. 리팩토링 - 2단계에서 생겨난 모든 중복을 제거한다. 예제 1: Money 다중 통화를 지원하는 보고서를 만들어보자. 종목 주 가격 합계 IBM 1000 25USD 25000USD Novartis 400 150CHF 60000CHF 합계 65000USD 기준 변환 환율 CHF USD 1.5 이러한 보고서를 생성..