From 09d906ef9834e75f956ceb857fac02a77bc70f72 Mon Sep 17 00:00:00 2001 From: "Donald J. Brown" Date: Sat, 13 Oct 2007 15:50:32 +0000 Subject: [PATCH] Adding missing test WW-2251 git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/trunk@584416 13f79535-47bb-0310-9956-ffa450edef68 --- .../config/AnotherAnnotatedObject.java | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 plugins/codebehind/src/test/java/org/apache/struts2/config/AnotherAnnotatedObject.java diff --git a/plugins/codebehind/src/test/java/org/apache/struts2/config/AnotherAnnotatedObject.java b/plugins/codebehind/src/test/java/org/apache/struts2/config/AnotherAnnotatedObject.java new file mode 100644 index 000000000..cd8a1f71c --- /dev/null +++ b/plugins/codebehind/src/test/java/org/apache/struts2/config/AnotherAnnotatedObject.java @@ -0,0 +1,26 @@ +/* + * $Id: CustomNamespaceAction.java 584166 2007-10-12 14:07:52Z mrdon $ + * + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +package org.apache.struts2.config; + +@Action(name="myaction2") +public class AnotherAnnotatedObject { + +}