From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6563 invoked by alias); 9 Jan 2007 15:41:39 -0000 Received: (qmail 6555 invoked by uid 22791); 9 Jan 2007 15:41:38 -0000 X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org (qpsmtpd/0.31) with ESMTP; Tue, 09 Jan 2007 15:41:32 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id l09FfTiA018731 for ; Tue, 9 Jan 2007 10:41:30 -0500 Received: from pobox.toronto.redhat.com (pobox.toronto.redhat.com [172.16.14.4]) by int-mx1.corp.redhat.com (8.13.1/8.13.1) with ESMTP id l09FfTLg012202 for ; Tue, 9 Jan 2007 10:41:29 -0500 Received: from toothpaste.toronto.redhat.com (toothpaste.toronto.redhat.com [172.16.14.161]) by pobox.toronto.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id l09FfTag000385 for ; Tue, 9 Jan 2007 10:41:29 -0500 Subject: FYI: New AWTPermission Test From: Tania Bento To: mauve-patches Content-Type: multipart/mixed; boundary="=-Lcgc46IvOcov2A3zx+qm" Date: Tue, 09 Jan 2007 15:41:00 -0000 Message-Id: <1168357289.7057.1.camel@toothpaste.toronto.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.6.3 (2.6.3-1.fc5.5) X-IsSubscribed: yes Mailing-List: contact mauve-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: mauve-patches-owner@sourceware.org X-SW-Source: 2007/txt/msg00006.txt.bz2 --=-Lcgc46IvOcov2A3zx+qm Content-Type: text/plain Content-Transfer-Encoding: 7bit Content-length: 264 Hey, This adds a new test for java.awt.AWTPermission. It checks that the default values are set correctly in the constructor. Cheers, Tania 2007-01-09 Tania Bento * gnu/testlet/java/awt/AWTPermission/constructor.java: New test. --=-Lcgc46IvOcov2A3zx+qm Content-Disposition: attachment; filename=patch.diff Content-Type: text/x-patch; name=patch.diff; charset=utf-8 Content-Transfer-Encoding: 7bit Content-length: 2155 Index: gnu/testlet/java/awt/AWTPermission/constructor.java =================================================================== RCS file: gnu/testlet/java/awt/AWTPermission/constructor.java diff -N gnu/testlet/java/awt/AWTPermission/constructor.java --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ gnu/testlet/java/awt/AWTPermission/constructor.java 9 Jan 2007 15:35:59 -0000 @@ -0,0 +1,66 @@ +/* constructor.java + Copyright (C) 2007 Red Hat +This file is part of Mauve. + +Mauve is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2, or (at your option) +any later version. + +Mauve is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +General Public License for more details. + +You should have received a copy of the GNU General Public License +along with Mauve; see the file COPYING. If not, write to the +Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA +02110-1301 USA. + +*/ + +// Tags: JDK1.4 + +package gnu.testlet.java.awt.AWTPermission; + +import java.awt.AWTPermission; + +import gnu.testlet.TestHarness; +import gnu.testlet.Testlet; + +public class constructor implements Testlet +{ + + public void test(TestHarness harness) + { + AWTPermission permission = new AWTPermission("String"); + harness.check(permission.getActions(), ""); + harness.check(permission.getName(), "String"); + harness.check(permission.toString(), "(java.awt.AWTPermission String)"); + + // String cannot be the empty string. + boolean fail = false; + try + { + permission = new AWTPermission(""); + } + catch (IllegalArgumentException e) + { + fail = true; + } + harness.check(fail); + + // Name cannot be null. + fail = false; + try + { + permission = new AWTPermission(null); + } + catch (NullPointerException e) + { + fail = true; + } + harness.check(fail); + } + +} --=-Lcgc46IvOcov2A3zx+qm--