You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Mark Hindess (JIRA)" <ji...@apache.org> on 2007/01/13 09:30:27 UTC

[jira] Resolved: (HARMONY-2442) [classlib][awt] java.awt.Robot(null) throws NPE instead of IllegalArgumentException

     [ https://issues.apache.org/jira/browse/HARMONY-2442?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mark Hindess resolved HARMONY-2442.
-----------------------------------

    Resolution: Fixed
      Assignee: Mark Hindess

Applied patches in r495848.  I modified the test to let junit handle the exception to conform to project conventions.  Please confirm that the patches were applied as expected.


> [classlib][awt] java.awt.Robot(null) throws NPE instead of IllegalArgumentException
> -----------------------------------------------------------------------------------
>
>                 Key: HARMONY-2442
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2442
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>         Assigned To: Mark Hindess
>            Priority: Minor
>         Attachments: Robot.patch, RobotTest.patch
>
>
> Test case:
> ---------------------
> import java.awt.Robot;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
> 	
> 	public static void main(String args[]) {
> 		junit.textui.TestRunner.run(TheTest.class);
> 	}
> 	
> 	public void testcase1() {
> 		try {
> 			new Robot(null);
> 			fail("IAE expected");
> 		} catch (IllegalArgumentException e) {
> 		} catch (Exception ex) {
> 			fail(ex.getClass().getName());
> 		}
> 	}
> }
> RI output:
> ----------------
> .
> Time: 0,04
> OK (1 test)
> Harmony output:
> ----------------
> .F
> Time: 0.5
> There was 1 failure:
> 1) testcase1(TheTest)junit.framework.AssertionFailedError: java.lang.NullPointerException
> 	at TheTest.testcase1(TheTest.java:17)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:8)
> 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: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira