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

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



  @BeforeClass
  public static void before(){
    LogManager.getRootLogger().setLevel(Level.INFO);
    new LogbackFixture().assertNoError(new NoErrorLogContentAssertion(){
      SpringRemotingServer springRemotingServer;
      @Override
      public void executeLogCreatingAction() {
        FutureTask<Void> futureTask = new FutureTask<Void>(new Runnable() {
          @Override
View Full Code Here


  @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.