1 /*
2 * Copyright 2004-2008 the Seasar Foundation and the Others.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
13 * either express or implied. See the License for the specific language
14 * governing permissions and limitations under the License.
15 */
16 package org.seasar.uruma.rcp.configuration.extension;
17
18 import org.seasar.uruma.core.UrumaConstants;
19 import org.seasar.uruma.rcp.unit.UrumaRcpTestCase;
20
21 /**
22 * {@link ActionSetsBuilder} のためのテストクラスです。<br />
23 *
24 * @author y-komori
25 */
26 public class ActionSetsBuilderTest extends UrumaRcpTestCase implements
27 UrumaConstants {
28 private ActionSetsBuilder builder;
29
30 @Override
31 protected void setUp() throws Exception {
32 this.builder = new ActionSetsBuilder();
33 }
34
35 public void testBuildExtension() {
36 // TODO
37 }
38
39 public void testSetupActionSets() {
40 // TODO
41 }
42
43 public void testSetupMenu() {
44 // TODO
45 }
46
47 public void testSetupMenuItem() {
48 // TODO
49 }
50 }