KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > tapestry > asset > TestDefaultAssetFactory


1 // Copyright 2005 The Apache Software Foundation
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License");
4
// you may not use this file except in compliance with the License.
5
// You may obtain a copy of the License at
6
//
7
// http://www.apache.org/licenses/LICENSE-2.0
8
//
9
// Unless required by applicable law or agreed to in writing, software
10
// distributed under the License is distributed on an "AS IS" BASIS,
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
// See the License for the specific language governing permissions and
13
// limitations under the License.
14

15 package org.apache.tapestry.asset;
16
17 import org.apache.hivemind.Location;
18 import org.apache.hivemind.test.HiveMindTestCase;
19
20 /**
21  * Tests for {@link org.apache.tapestry.asset.DefaultAssetFactory}.
22  *
23  * @author Howard M. Lewis Ship
24  * @since 4.0
25  */

26 public class TestDefaultAssetFactory extends HiveMindTestCase
27 {
28     public void testCreateAssetFull()
29     {
30         Location l = newLocation();
31
32         replayControls();
33
34         AssetFactory factory = new DefaultAssetFactory();
35
36         ExternalAsset asset = (ExternalAsset) factory.createAsset(null, "/foo/bar/baz", null, l);
37
38         assertEquals("ExternalAsset[/foo/bar/baz]", asset.toString());
39         assertSame(l, asset.getLocation());
40         
41         verifyControls();
42     }
43
44     public void testCreateAssetFromResource()
45     {
46         Location l = newLocation();
47
48         replayControls();
49
50         AssetFactory factory = new DefaultAssetFactory();
51
52         ExternalAsset asset = (ExternalAsset) factory.createAsset(null, "/foo/bar/baz", null, l);
53
54         assertEquals("ExternalAsset[/foo/bar/baz]", asset.toString());
55         assertSame(l, asset.getLocation());
56         
57         verifyControls();
58
59     }
60 }
61
Popular Tags