Page History
...
전체실행을 할수 있으며 부분실패에대해 집중도 할수가 있습니다.
동시성 처리 가능 유닛테스트 이해하기
Code Block | ||||
---|---|---|---|---|
| ||||
protected void actorTest2() {
new TestKit(system) {{
final ActorRef testActor = system.actorOf( ext.props("testActor"),"test1");
testActor.tell( "hi", getRef() );
// await the correct response
expectMsg(java.time.Duration.ofSeconds(1), "hi too");
}};
} |
실시간으로 처리되고 적재되는 메시지를 검증할수 있는 새로운 방법이 필요하며
...