use of com.spectralogic.ds3autogen.c.models.C_Type in project ds3_autogen by SpectraLogic.
the class C_Type_Test method testStructMemberTypeUuidToString.
@Test
public void testStructMemberTypeUuidToString() throws java.text.ParseException {
final Ds3Element testElement = new Ds3Element("uuidElement", "java.util.UUID", null, false);
final C_Type c_type = C_TypeHelper.convertDs3ElementType(testElement, ImmutableSet.of());
assertThat(c_type.getTypeName(), is("ds3_str"));
assertThat(c_type.toString(), is("ds3_str*"));
}
use of com.spectralogic.ds3autogen.c.models.C_Type in project ds3_autogen by SpectraLogic.
the class C_Type_Test method testStructTypeDs3ResponseToString.
@Test
public void testStructTypeDs3ResponseToString() throws java.text.ParseException {
final Ds3Element testElement = new Ds3Element("BuildInformation", "com.spectralogic.s3.common.platform.lang.BuildInformation", null, false);
final C_Type c_type = C_TypeHelper.convertDs3ElementType(testElement, ImmutableSet.of());
assertThat(c_type.getTypeName(), is("ds3_build_information_response"));
assertThat(c_type.toString(), is("ds3_build_information_response*"));
}
use of com.spectralogic.ds3autogen.c.models.C_Type in project ds3_autogen by SpectraLogic.
the class C_Type_Test method testStructMemberTypeStringToString.
@Test
public void testStructMemberTypeStringToString() throws java.text.ParseException {
final Ds3Element testElement = new Ds3Element("stringElement", "java.lang.String", null, false);
final C_Type c_type = C_TypeHelper.convertDs3ElementType(testElement, ImmutableSet.of());
assertThat(c_type.getTypeName(), is("ds3_str"));
assertThat(c_type.toString(), is("ds3_str*"));
}
use of com.spectralogic.ds3autogen.c.models.C_Type in project ds3_autogen by SpectraLogic.
the class C_Type_Test method testStructTypeIntToString2.
@Test
public void testStructTypeIntToString2() throws java.text.ParseException {
final Ds3Element testElement = new Ds3Element("intStruct2", "java.lang.Integer", null, true);
final C_Type c_type = C_TypeHelper.convertDs3ElementType(testElement, ImmutableSet.of());
assertThat(c_type.getTypeName(), is("int"));
assertThat(c_type.toString(), is("int"));
}
use of com.spectralogic.ds3autogen.c.models.C_Type in project ds3_autogen by SpectraLogic.
the class C_Type_Test method testStructMemberTypeDoubleToString.
@Test
public void testStructMemberTypeDoubleToString() throws java.text.ParseException {
final Ds3Element testElement = new Ds3Element("doubleElement", "double", null, false);
final C_Type c_type = C_TypeHelper.convertDs3ElementType(testElement, ImmutableSet.of());
assertThat(c_type.getTypeName(), is("float"));
assertThat(c_type.toString(), is("float"));
}
Aggregations