public void New_Creates_XmlElement_With_Name_Iq()
        {
            var stanza = IqStanza.New();

            Assert.Equal("iq", stanza.Name);
        }
 public void Error_Creates_Iq_Stanza_With_Error_Type()
 {
     AssertIqStanza(IqStanza.Error(), IqStanza.Type.Error);
 }
 public void Set_Creates_Iq_Stanza_With_Set_Type()
 {
     AssertIqStanza(IqStanza.Set(), IqStanza.Type.Set);
 }
 public void Result_Creates_Iq_Stanza_With_Result_Type()
 {
     AssertIqStanza(IqStanza.Result(), IqStanza.Type.Result);
 }
 public void Get_Creates_Iq_Stanza_With_Type_Get()
 {
     AssertIqStanza(IqStanza.Get(), IqStanza.Type.Get);
 }