Package jetbrains.communicator.util

Examples of jetbrains.communicator.util.WatchDog.diff()


      WatchDog watchDog = new WatchDog("Load history");
      LocalMessageDispatcherImpl localMessageDispatcher = createLocalMessageDispatcher();
      LocalMessage[] messages = localMessageDispatcher.getHistory(myUser, yesterday());
      assertEquals(1000, messages.length);

      long diff = watchDog.diff();
      watchDog.watchAndReset("done");
      assertTrue("Too long getting history:" + diff, diff < 1500);

      messages = localMessageDispatcher.getHistory(myUser, null);
      assertEquals(1000, messages.length);
View Full Code Here


      assertTrue("Too long getting history:" + diff, diff < 1500);

      messages = localMessageDispatcher.getHistory(myUser, null);
      assertEquals(1000, messages.length);

      diff = watchDog.diff();
      watchDog.watchAndReset("again done");
      assertTrue("Too long getting history second time:" + diff, diff < 100);

    } finally {
      logger.setLevel(oldLevel);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.