本文整理汇总了C++中TestIntfPrx::dictionaryTest方法的典型用法代码示例。如果您正苦于以下问题:C++ TestIntfPrx::dictionaryTest方法的具体用法?C++ TestIntfPrx::dictionaryTest怎么用?C++ TestIntfPrx::dictionaryTest使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TestIntfPrx
的用法示例。
在下文中一共展示了TestIntfPrx::dictionaryTest方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: tprintf
//.........这里部分代码省略.........
test(ss1b->ice_id() == "::Test::B");
test(ss1d1->ice_id() == "::Test::D1");
test(ss1d3->ice_id() == "::Test::B");
test(ss2b->ice_id() == "::Test::B");
test(ss2d1->ice_id() == "::Test::D1");
test(ss2d3->ice_id() == "::Test::B");
}
catch(const ::Ice::Exception&)
{
test(0);
}
}
tprintf("ok\n");
tprintf("dictionary slicing... ");
{
try
{
BDict bin;
BDict bout;
BDict r;
int i;
for(i = 0; i < 10; ++i)
{
string s = Ice::printfToString("D1.%d", i);
D1Ptr d1 = new D1;
d1->sb = s;
d1->pb = d1;
d1->sd1 = s;
bin[i] = d1;
}
r = test->dictionaryTest(bin, bout);
test(bout.size() == 10);
for(i = 0; i < 10; ++i)
{
BPtr b = bout.find(i * 10)->second;
test(b);
string s = Ice::printfToString("D1.%d", i);
test(b->sb == s);
test(b->pb);
test(b->pb != b);
test(b->pb->sb == s);
test(b->pb->pb == b->pb);
}
test(r.size() == 10);
for(i = 0; i < 10; ++i)
{
BPtr b = r.find(i * 20)->second;
test(b);
string s = Ice::printfToString("D1.%d", i * 20);
test(b->sb == s);
test(b->pb == (i == 0 ? BPtr(0) : r.find((i - 1) * 20)->second));
D1Ptr d1 = D1Ptr::dynamicCast(b);
test(d1);
test(d1->sd1 == s);
test(d1->pd1 == d1);
}
}
catch(const ::Ice::Exception&)
{
test(0);
}