01: /*
02: * The contents of this file are subject to the Sapient Public License
03: * Version 1.0 (the "License"); you may not use this file except in compliance
04: * with the License. You may obtain a copy of the License at
05: * http://carbon.sf.net/License.html.
06: *
07: * Software distributed under the License is distributed on an "AS IS" basis,
08: * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
09: * the specific language governing rights and limitations under the License.
10: *
11: * The Original Code is The Carbon Component Framework.
12: *
13: * The Initial Developer of the Original Code is Sapient Corporation
14: *
15: * Copyright (C) 2003 Sapient Corporation. All Rights Reserved.
16: */
17:
18: package org.sape.carbon.services.perflog.test;
19:
20: import org.sape.carbon.core.component.Lookup;
21: import org.sape.carbon.services.perflog.PerformanceLogger;
22:
23: import junit.framework.Test;
24: import junit.framework.TestCase;
25: import junit.framework.TestSuite;
26:
27: /**
28: * <P>Executes some simple tests on the performance logger.</P>
29: *
30: * @since carbon 1.0
31: * @author Tim Fennell, May 2002
32: * @version $Revision: 1.3 $($Author: dvoet $ / $Date: 2003/05/05 21:21:31 $)
33: * <br>Copyright 2002 Sapient
34: */
35: public class PerformanceLoggerTest extends TestCase {
36:
37: private static final String PERF_LOG_SERVICE = "/log/perf/PerformanceLogger";
38:
39: public PerformanceLoggerTest(String name) {
40: super (name);
41: }
42:
43: /**
44: * <P>Simply test the logging at each severity level.</P>
45: */
46: public void testBasicPerfLog() {
47: PerformanceLogger perflog = (PerformanceLogger) Lookup
48: .getInstance().fetchComponent(PERF_LOG_SERVICE);
49:
50: perflog.start("Foo");
51: perflog.end("Foo");
52: }
53:
54: /**
55: * Method called by jUnit to get all the tests in this test case.
56: * @return Test the suite of tests in this test case
57: */
58: public static Test suite() {
59: return new TestSuite(PerformanceLoggerTest.class);
60: }
61: }
|