eclipseを使用してTTCN-3でテストケースを作成しています。TTCNでXML文字列を解析する
今<Templates><Template><Id>1001</Id><Category>refill</Category><Description>Template description</Description><ApplicationId>AIR</ApplicationId><Name>Template name</Name><SchemaVersion>3.3.14</SchemaVersion></Template><Template><Id>1002</Id><Category>refill</Category><Description>Template Description 1</Description><ApplicationId>AIR</ApplicationId><Name>Template name</Name><SchemaVersion>3.3.14</SchemaVersion></Template></Templates>
、私はこのXML文字列を解析し、そこからテンプレートオブジェクトを取得する必要があります:以下のようにテストケースの一つには、私は、シミュレータからの応答に複数のレコードを含むされたXML文字列を得ましたそれらをテストケースでさらに使用することができます。ここで
は、テンプレートオブジェクトの定義です:
public type record Template
{
charstring id,
charstring category,
charstring description,
charstring applicationId,
charstring name,
charstring schemaVersion
}
public type record of Template Templates;
私はTTCNに新しいですので、任意の助けを感謝しています。ありがとう。