try
{
TypeCode t = orb.create_fixed_tc((short) 15, (short) 6);
assertEquals("fixed digits", t.fixed_digits(), (short) 15);
assertEquals("fixed scale", t.fixed_scale(), (short) 6);
assertEquals("create_fixed_tc", t.kind().value(), TCKind._tk_fixed);
}
catch (BadKind ex)
{
fail("BadKind exception when testing fixed tc");
}