/**
Test MSdpElementBuilder::BuildNilL()
*/
void CT_DataSdpElementBuilder::DoCmdBuildNilL(MSdpElementBuilder& aElementBuilder)
{
    iDataWrapper.INFO_PRINTF1(_L("MSdpElementBuilder BuildNilL Call"));

    TRAPD(err, aElementBuilder.BuildNilL());
    if(err != KErrNone)
    {
        iDataWrapper.ERR_PRINTF2(_L("MSdpElementBuilder BuildNilL failed with error %d"), err);
        iDataWrapper.SetError(err);
    }
}