Search in sources :

Example 1 with TypeMapping

use of org.applause.lang.applauseDsl.TypeMapping in project applause by applause.

the class ScalarDataTypesValidationTestHelper method hasPlatformTypeMapping.

public void hasPlatformTypeMapping(final CharSequence sequence, final String typeName, final String mappedName) {
    try {
        final Model model = this._parseHelper.parse(sequence);
        EList<NamedElement> _elements = model.getElements();
        Iterable<Platform> _filter = Iterables.<Platform>filter(_elements, Platform.class);
        final Platform platform = IterableExtensions.<Platform>head(_filter);
        EList<PlatformMapping> _mappings = platform.getMappings();
        PlatformMapping _head = IterableExtensions.<PlatformMapping>head(_mappings);
        final TypeMapping platformMapping = ((TypeMapping) _head);
        DataType _type = platformMapping.getType();
        String _name = _type.getName();
        Matcher<String> _is = CoreMatchers.<String>is("String");
        Assert.<String>assertThat(_name, _is);
        String _simpleName = platformMapping.getSimpleName();
        Matcher<String> _is_1 = CoreMatchers.<String>is("NSString");
        Assert.<String>assertThat(_simpleName, _is_1);
    } catch (Throwable _e) {
        throw Exceptions.sneakyThrow(_e);
    }
}
Also used : Platform(org.applause.lang.applauseDsl.Platform) PlatformMapping(org.applause.lang.applauseDsl.PlatformMapping) Model(org.applause.lang.applauseDsl.Model) TypeMapping(org.applause.lang.applauseDsl.TypeMapping) DataType(org.applause.lang.applauseDsl.DataType) NamedElement(org.applause.lang.applauseDsl.NamedElement)

Aggregations

DataType (org.applause.lang.applauseDsl.DataType)1 Model (org.applause.lang.applauseDsl.Model)1 NamedElement (org.applause.lang.applauseDsl.NamedElement)1 Platform (org.applause.lang.applauseDsl.Platform)1 PlatformMapping (org.applause.lang.applauseDsl.PlatformMapping)1 TypeMapping (org.applause.lang.applauseDsl.TypeMapping)1