Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

전체실행을 할수 있으며 부분실패에대해 집중도 할수가 있습니다.


동시성 처리 가능 유닛테스트 이해하기

Code Block
languagejava
themeEmacs
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");
       
    }};   
}


실시간으로 처리되고 적재되는 메시지를 검증할수 있는 새로운 방법이 필요하며

...