View Javadoc

1   /*
2    * $Id: MulticasterTestCase.java 19191 2010-08-25 21:05:23Z tcarlson $
3    * --------------------------------------------------------------------------------------
4    * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
5    *
6    * The software in this package is published under the terms of the CPAL v1.0
7    * license, a copy of which has been included with this distribution in the
8    * LICENSE.txt file.
9    */
10  
11  package org.mule.util;
12  
13  import org.mule.tck.AbstractMuleTestCase;
14  import org.mule.tck.testmodels.fruit.Apple;
15  import org.mule.tck.testmodels.fruit.Banana;
16  import org.mule.tck.testmodels.fruit.Fruit;
17  import org.mule.tck.testmodels.fruit.WaterMelon;
18  
19  import java.util.ArrayList;
20  import java.util.List;
21  
22  public class MulticasterTestCase extends AbstractMuleTestCase
23  {
24  
25      public void testMulticating() throws Exception
26      {
27          List fruit = new ArrayList();
28          Apple apple = new Apple();
29          Banana banana = new Banana();
30          WaterMelon melon = new WaterMelon();
31          fruit.add(apple);
32          fruit.add(banana);
33          fruit.add(melon);
34  
35          Fruit caster = (Fruit)Multicaster.create(Fruit.class, fruit);
36          caster.bite();
37  
38          assertTrue(apple.isBitten());
39          assertTrue(banana.isBitten());
40          assertTrue(melon.isBitten());
41      }
42  
43  }