KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > kilim > repository > ClassLoaderResourceLoaderTest


1 /**
2  * Copyright (C) 2002 Kelua SA
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  */

18
19 package org.objectweb.kilim.repository;
20
21 import java.io.InputStream JavaDoc;
22
23 import junit.framework.TestCase;
24
25 /**
26  * ClassLoader implementation of ResourceLoader unit testing
27  * @author dutoo
28  */

29 public class ClassLoaderResourceLoaderTest extends TestCase {
30
31    /**
32     * Constructor for ClassLoaderResourceLoaderTest.
33     * @param arg0 name
34     */

35    public ClassLoaderResourceLoaderTest(String JavaDoc arg0) {
36       super(arg0);
37    }
38
39    /**
40     * tries to find a non existing Resource
41     * @throws ResourceNotFoundException should not happen
42     */

43    public void testLoadingException() throws ResourceNotFoundException {
44       ClassLoader JavaDoc classLoader = getClass().getClassLoader();
45       ResourceLoader resLoader = new ClassLoaderResourceLoader(classLoader);
46       
47       try {
48          InputStream JavaDoc is = resLoader.getResource("plouf.xml");
49          fail("ResourceLoaderClassLoader should throw ResourceNotFoundException");
50       } catch (ResourceNotFoundException rnfex) {
51          assertTrue(rnfex.getResourceName().equals("plouf.xml"));
52       }
53    }
54
55 }
56
Popular Tags