Package de.scoopgmbh.copper.monitoring.server.testfixture.LogbackFixture

Examples of de.scoopgmbh.copper.monitoring.server.testfixture.LogbackFixture.LogContentAssertion


  @Test
  public void test_too_many_data_adds_schould_be_ignored_and_not_block_the_submitting_thread(){
    MonitoringDataAccessQueue monitoringQueue = new MonitoringDataAccessQueue(10,null,Mockito.mock(MonitoringDataAdder.class));
    final MonitoringDataCollector monitoringDataCollector = new MonitoringDataCollector(monitoringQueue);
   
    new LogbackFixture().assertLogContent(new LogContentAssertion() {
     
      @Override
      public void executeLogCreatingAction() {
        for (int i=0;i<1000;i++){
          monitoringDataCollector.submitAdapterWfLaunch("", new Object());
View Full Code Here

TOP

Related Classes of de.scoopgmbh.copper.monitoring.server.testfixture.LogbackFixture.LogContentAssertion

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.