summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/objects/TestI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Ice/objects/TestI.cpp')
-rw-r--r--cpp/test/Ice/objects/TestI.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/cpp/test/Ice/objects/TestI.cpp b/cpp/test/Ice/objects/TestI.cpp
index 267e389be21..124e136fba3 100644
--- a/cpp/test/Ice/objects/TestI.cpp
+++ b/cpp/test/Ice/objects/TestI.cpp
@@ -95,3 +95,12 @@ InitialI::getAll(BPtr& b1, BPtr& b2, CPtr& c, DPtr& d)
c = _c;
d = _d;
}
+
+void
+InitialI::addFacetsToB1()
+{
+ _b1->_addFacet(_b1, "b1");
+ _b1->_addFacet(_b2, "b2");
+ _b1->_addFacet(_c, "c");
+ _b1->_addFacet(_d, "d");
+}