public void BindingElementType ()
		{
			Poker poker = new Poker ();
			Assert.AreEqual (typeof (WebHttpBinding), poker.GetBindingElementType (), "BindingElementType");
		}
Example #2
0
        public void BindingElementType()
        {
            Poker <CustomBinding> poker = new Poker <CustomBinding> ("kuku");

            Assert.AreEqual(typeof(CustomBinding), poker.GetBindingElementType(), "BindingElementType");
        }
        public void BindingElementType()
        {
            Poker poker = new Poker();

            Assert.AreEqual(typeof(NetTcpBinding), poker.GetBindingElementType(), "BindingElementType");
        }
		public void BindingElementType () {
			Poker poker = new Poker ();
			Assert.AreEqual (typeof (NetNamedPipeBinding), poker.GetBindingElementType (), "BindingElementType");
		}