Package org.jboss.beans.metadata.plugins

Examples of org.jboss.beans.metadata.plugins.AbstractMapMetaData


      assertNull(map.getValueType());
   }
  
   public void testMapWithValueClass() throws Exception
   {
      AbstractMapMetaData map = getMap();
      assertNull(map.getType());
      assertNull(map.getKeyType());
      assertEquals("ValueClass", map.getValueType());
   }
View Full Code Here


      assertEquals("ValueClass", map.getValueType());
   }
  
   public void testMapWithValue() throws Exception
   {
      AbstractMapMetaData map = getMap();
      assertNull(map.getType());
      assertNull(map.getKeyType());
      assertNull(map.getValueType());
      assertValue("Key", getKey(map));
      assertValue("Value", getValue(map));
   }
View Full Code Here

      assertValue("Value", getValue(map));
   }
  
   public void testMapWithInjection() throws Exception
   {
      AbstractMapMetaData map = getMap();
      assertNull(map.getType());
      assertNull(map.getKeyType());
      assertNull(map.getValueType());
      assertInjection(getKey(map));
      assertInjection(getValue(map));
   }
View Full Code Here

      assertInjection(getValue(map));
   }
  
   public void testMapWithCollection() throws Exception
   {
      AbstractMapMetaData map = getMap();
      assertNull(map.getType());
      assertNull(map.getKeyType());
      assertNull(map.getValueType());
      assertCollection(getKey(map));
      assertCollection(getValue(map));
   }
View Full Code Here

      assertCollection(getValue(map));
   }
  
   public void testMapWithList() throws Exception
   {
      AbstractMapMetaData map = getMap();
      assertNull(map.getType());
      assertNull(map.getKeyType());
      assertNull(map.getValueType());
      assertList(getKey(map));
      assertList(getValue(map));
   }
View Full Code Here

      assertList(getValue(map));
   }
  
   public void testMapWithSet() throws Exception
   {
      AbstractMapMetaData map = getMap();
      assertNull(map.getType());
      assertNull(map.getKeyType());
      assertNull(map.getValueType());
      assertSet(getKey(map));
      assertSet(getValue(map));
   }
View Full Code Here

      assertSet(getValue(map));
   }
  
   public void testMapWithArray() throws Exception
   {
      AbstractMapMetaData map = getMap();
      assertNull(map.getType());
      assertNull(map.getKeyType());
      assertNull(map.getValueType());
      assertArray(getKey(map));
      assertArray(getValue(map));
   }
View Full Code Here

      assertArray(getValue(map));
   }
  
   public void testMapWithMap() throws Exception
   {
      AbstractMapMetaData map = getMap();
      assertNull(map.getType());
      assertNull(map.getKeyType());
      assertNull(map.getValueType());
      assertMap(getKey(map));
      assertMap(getValue(map));
   }
View Full Code Here

      assertMap(getValue(map));
   }
  
   public void testMapWithNull() throws Exception
   {
      AbstractMapMetaData map = getMap();
      assertNull(map.getType());
      assertNull(map.getKeyType());
      assertNull(map.getValueType());
      assertNullValue(getKey(map));
      assertNullValue(getValue(map));
   }
View Full Code Here

      assertNullValue(getValue(map));
   }
  
   public void testMapWithThis() throws Exception
   {
      AbstractMapMetaData map = getMap();
      assertNull(map.getType());
      assertNull(map.getKeyType());
      assertNull(map.getValueType());
      assertThis(getKey(map));
      assertThis(getValue(map));
   }
View Full Code Here

TOP

Related Classes of org.jboss.beans.metadata.plugins.AbstractMapMetaData

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.