Package org.graylog2.plugin.periodical

Examples of org.graylog2.plugin.periodical.Periodical.run()


                throw new NullPointerException();
            }
        };

        try {
            periodical1.run();
            // the uncaught exception from doRun should have been logged
            verify(logger, atLeastOnce()).error(anyString(), any(Throwable.class));
        } catch (Exception e) {
            fail("run() should never propagate an unchecked exception!", e);
        }
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.