01: /*
02: * $Id: ContainerWithAssociatedMarkupHelper.java,v 1.1 2006/03/10 22:20:42
03: * jdonnerstag Exp $ $Revision: 459938 $ $Date: 2006/03/10 22:20:42 $
04: *
05: * ==============================================================================
06: * Licensed under the Apache License, Version 2.0 (the "License"); you may not
07: * use this file except in compliance with the License. You may obtain a copy of
08: * the License at
09: *
10: * http://www.apache.org/licenses/LICENSE-2.0
11: *
12: * Unless required by applicable law or agreed to in writing, software
13: * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
14: * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
15: * License for the specific language governing permissions and limitations under
16: * the License.
17: */
18: package wicket.markup.html.header;
19:
20: import wicket.WicketTestCase;
21:
22: /**
23: *
24: * @author Matheus
25: */
26: public class HeaderScopingTest extends WicketTestCase {
27: /**
28: * Construct.
29: * @param name
30: */
31: public HeaderScopingTest(String name) {
32: super (name);
33: }
34:
35: /**
36: *
37: * @throws Exception
38: */
39: public void test_1() throws Exception {
40: executeTest(MyPage.class, "MyPageExpectedResult.html");
41: }
42: }
|