1 package com.macvu.tiles;
2
3 import junit.framework.TestCase;
4
5 /***
6 * Created by IntelliJ IDEA.
7 * User: MVu
8 * Date: Mar 11, 2004
9 * Time: 9:39:54 AM
10 * To change this template use Options | File Templates.
11 */
12 public class CacheComponentDefinitionTest extends TestCase {
13 public CacheComponentDefinitionTest(String s) {
14 super(s);
15 }
16
17 public void setUp() throws Exception {
18 super.setUp();
19 }
20
21 public void testCacheComponentDefinition() {
22 CacheInformation information = new CacheInformation();
23
24 CacheComponentDefinition definition = new CacheComponentDefinition();
25 definition.setCacheInformation(information);
26
27 assertEquals("Information is the same.", information, definition.getCacheInformation());
28 }
29 }