You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwebbeans.apache.org by ge...@apache.org on 2009/01/17 13:10:27 UTC

svn commit: r735277 - in /incubator/openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/unittests/exception/initializer: ./ BrokenInitializerTest.java

Author: gerdogdu
Date: Sat Jan 17 04:10:27 2009
New Revision: 735277

URL: http://svn.apache.org/viewvc?rev=735277&view=rev
Log:
Broken initializer method tests are added.

Added:
    incubator/openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/unittests/exception/initializer/
    incubator/openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/unittests/exception/initializer/BrokenInitializerTest.java   (with props)

Added: incubator/openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/unittests/exception/initializer/BrokenInitializerTest.java
URL: http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/unittests/exception/initializer/BrokenInitializerTest.java?rev=735277&view=auto
==============================================================================
--- incubator/openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/unittests/exception/initializer/BrokenInitializerTest.java (added)
+++ incubator/openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/unittests/exception/initializer/BrokenInitializerTest.java Sat Jan 17 04:10:27 2009
@@ -0,0 +1,113 @@
+/*
+ *  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.webbeans.test.unittests.exception.initializer;
+
+import org.apache.webbeans.test.component.exception.initializer.BrokenInitializer1;
+import org.apache.webbeans.test.component.exception.initializer.BrokenInitializer2;
+import org.apache.webbeans.test.component.exception.initializer.BrokenInitializer3;
+import org.apache.webbeans.test.component.exception.initializer.BrokenInitializer4;
+import org.apache.webbeans.test.servlet.TestContext;
+import org.junit.Assert;
+import org.junit.Before;
+import org.junit.Test;
+
+public class BrokenInitializerTest extends TestContext
+{
+    public BrokenInitializerTest()
+    {
+        super(BrokenInitializerTest.class.getName());
+    }
+    
+    @Before
+    public void init()
+    {
+        initDefaultDeploymentTypes();
+    }
+    
+    @Test
+    public void broken1()
+    {
+        Exception e = null;
+        
+        try
+        {
+            defineSimpleWebBean(BrokenInitializer1.class);
+            
+        }catch(Exception e1)
+        {
+            System.out.println(e1.getMessage());
+            e = e1;
+        }
+        
+        Assert.assertNotNull(e);
+    }
+    
+    @Test
+    public void broken2()
+    {
+        Exception e = null;
+        
+        try
+        {
+            defineSimpleWebBean(BrokenInitializer2.class);
+            
+        }catch(Exception e1)
+        {
+            System.out.println(e1.getMessage());
+            e = e1;
+        }
+        
+        Assert.assertNotNull(e);
+    }
+
+    @Test
+    public void broken3()
+    {
+        Exception e = null;
+        
+        try
+        {
+            defineSimpleWebBean(BrokenInitializer3.class);
+            
+        }catch(Exception e1)
+        {
+            System.out.println(e1.getMessage());
+            e = e1;
+        }
+        
+        Assert.assertNotNull(e);
+    }
+
+    @Test
+    public void broken4()
+    {
+        Exception e = null;
+        
+        try
+        {
+            defineSimpleWebBean(BrokenInitializer4.class);
+            
+        }catch(Exception e1)
+        {
+            System.out.println(e1.getMessage());
+            e = e1;
+        }
+        
+        Assert.assertNotNull(e);
+    }
+
+  }

Propchange: incubator/openwebbeans/trunk/webbeans-impl/src/test/java/org/apache/webbeans/test/unittests/exception/initializer/BrokenInitializerTest.java
------------------------------------------------------------------------------
    svn:eol-style = native