You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Mikhail Loenko (JIRA)" <ji...@apache.org> on 2006/04/19 07:53:18 UTC

[jira] Closed: (HARMONY-363) java.beans.beancontext.BeanContextServicesSupport.removeBeanContextServicesListener(...) does not throw NullPointerException

     [ http://issues.apache.org/jira/browse/HARMONY-363?page=all ]
     
Mikhail Loenko closed HARMONY-363:
----------------------------------

    Resolution: Fixed
     Assign To: Mikhail Loenko

cumulative issue for HARMONY-362 to HARMONY-370 is submitted as HARMONY-373

> java.beans.beancontext.BeanContextServicesSupport.removeBeanContextServicesListener(...) does not throw NullPointerException
> ----------------------------------------------------------------------------------------------------------------------------
>
>          Key: HARMONY-363
>          URL: http://issues.apache.org/jira/browse/HARMONY-363
>      Project: Harmony
>         Type: Bug

>   Components: Classlib
>     Reporter: Dmitry M. Kononov
>     Assignee: Mikhail Loenko
>     Priority: Minor
>  Attachments: BeanContextServicesSupport.java.diff, BeanContextServicesSupportTest.java
>
> Problem details:
> java.beans.beancontext.BeanContextServicesSupport.removeBeanContextServicesListener(BeanContextServicesListener bcsl):
> Harmony does not throw NullPointerException when parameter bcsl=null, while RI throws it.
> Specification doesn't say anything about NullPointerException throwing.
> Junit test to reproduce the problem:
> import junit.framework.TestCase;
> import java.beans.beancontext.BeanContextServicesSupport;
> public class BeanContextServicesSupportTest extends TestCase {
> 	public void test_removeBeanContextServicesListenerLjava_beans_beancontext_BeanContextServicesListener() {
> 		BeanContextServicesSupport obj = new BeanContextServicesSupport();
> 		boolean b = true;
> 		try {
> 			obj.removeBeanContextServicesListener(null);
> 			b = false;
> 		} catch (NullPointerException t) {
> 			t.printStackTrace();
> 		}
> 		assertTrue(b);
> 	}
> }
> RI output:
> .java.lang.NullPointerException: bcsl
>         at java.beans.beancontext.BeanContextServicesSupport.removeBeanContextSe
> rvicesListener(BeanContextServicesSupport.java:632)
>         at BeanContextServicesSupportTest.test_removeBeanContextServicesListener
> Ljava_beans_beancontext_BeanContextServicesListener(BeanContextServicesSupportTe
> st.java:15)
>         at jrockit.reflect.VirtualNativeMethodInvoker.invoke(Ljava.lang.Object;[
> Ljava.lang.Object;)Ljava.lang.Object;(Unknown Source)
>         at java.lang.reflect.Method.invoke(Ljava.lang.Object;[Ljava.lang.Object;
> I)Ljava.lang.Object;(Unknown Source)
>         at junit.framework.TestCase.runTest(TestCase.java:154)
>         at junit.framework.TestCase.runBare(TestCase.java:127)
>         at junit.framework.TestResult$1.protect(TestResult.java:106)
>         at junit.framework.TestResult.runProtected(TestResult.java:124)
>         at junit.framework.TestResult.run(TestResult.java:109)
>         at junit.framework.TestCase.run(TestCase.java:118)
>         at junit.framework.TestSuite.runTest(TestSuite.java:208)
>         at junit.framework.TestSuite.run(TestSuite.java:203)
>         at junit.textui.TestRunner.doRun(TestRunner.java:116)
>         at junit.textui.TestRunner.start(TestRunner.java:172)
>         at junit.textui.TestRunner.main(TestRunner.java:138)
> Time: 0.031
> OK (1 test)
> HARMONY output:
> java version 1.4.2 (subset)
> (c) Copyright 1991, 2005 The Apache Software Foundation or its licensors, as app
> licable.
> ..
> Time: 0.015
> There was 1 failure:
> 1) test_removeBeanContextServicesListenerLjava_beans_beancontext_BeanContextServ
> icesListener(BeanContextServicesSupportTest)junit.framework.AssertionFailedError
>         at BeanContextServicesSupportTest.test_removeBeanContextServicesListener
> Ljava_beans_beancontext_BeanContextServicesListener(BeanContextServicesSupportTe
> st.java:20)
>         at java.lang.reflect.AccessibleObject.invokeV(AccessibleObject.java:211)
> FAILURES!!!
> Tests run: 1,  Failures: 1,  Errors: 0

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira