assertTrue(adapterTypes.length > 0);
assertTrue(Arrays.asList(adapterTypes).contains("one"));
}
public void testContainerTypeDescriptionGetSupportedParemeterTypes() {
final ContainerTypeDescription desc = ContainerFactory.getDefault()
.getDescriptionByName(CONTAINER_TYPE_NAME);
final Class[][] parameterTypes = desc.getSupportedParameterTypes();
assertTrue(parameterTypes.length == 1);
assertTrue(parameterTypes[0].length == 2);
assertTrue(parameterTypes[0][0].equals(String.class));
assertTrue(parameterTypes[0][1].equals(Class.class));