Ejemplo n.º 1
0
        public void getFacetTest1()
        {
            IComponentServant target          = new IComponentServant(context);
            Type               facetType      = typeof(IReceptacles);
            string             facetName      = typeof(IReceptacles).Name;
            string             facetInterface = Repository.GetRepositoryID(facetType);
            Facet              facet          = context.GetFacetByName(facetName);
            MarshalByRefObject expected       = facet.Reference;
            MarshalByRefObject actual         = target.getFacet(facetInterface);

            Assert.AreEqual(expected, actual);
        }
Ejemplo n.º 2
0
 public void getFacetTest2()
 {
     IComponentServant  target = new IComponentServant(context);
     MarshalByRefObject actual = target.getFacet("IDL:invalid/interface:1.0");
 }