protected override void parseHistoryItem(MemoryStream stream, JabberWire wire)
 {
     var parser = new StreamParser();
     parser.OnStreamElement += ((_sender, node) => { 
                                    elements.Add((Element)node);
                                });
     parser.Push(stream.GetBuffer(), 0, (int)stream.Length);
     parser.Push(closeTag, 0, closeTag.Length);
 }
Пример #2
0
 public void handleWormMovedTest()
 {
     JabberWire target = new JabberWire(); // TODO: Initialize to an appropriate value
     string[] parts = null; // TODO: Initialize to an appropriate value
     target.handleWormMoved(parts);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Пример #3
0
 public void ActOnUntypedMessageTest()
 {
     JabberWire target = new JabberWire(); // TODO: Initialize to an appropriate value
     Element message = null; // TODO: Initialize to an appropriate value
     target.ActOnUntypedMessage(message);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Пример #4
0
 public void actOnScreenshotSubmissionTest()
 {
     JabberWire target = new JabberWire(); // TODO: Initialize to an appropriate value
     TargettedSubmission submission = null; // TODO: Initialize to an appropriate value
     target.actOnScreenshotSubmission(submission);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Пример #5
0
 public void actOnQuizReceivedTest()
 {
     JabberWire target = new JabberWire(); // TODO: Initialize to an appropriate value
     QuizQuestion quiz = null; // TODO: Initialize to an appropriate value
     target.actOnQuizReceived(quiz);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Пример #6
0
 public void actOnFileResourceTest()
 {
     JabberWire target = new JabberWire(); // TODO: Initialize to an appropriate value
     MeTLStanzas.FileResource resource = null; // TODO: Initialize to an appropriate value
     target.actOnFileResource(resource);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Пример #7
0
 public void JabberWireConstructorTest()
 {
     JabberWire target = new JabberWire();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
Пример #8
0
 public void actOnBubbleReceivedTest()
 {
     JabberWire target = new JabberWire(); // TODO: Initialize to an appropriate value
     TargettedBubbleContext bubble = null; // TODO: Initialize to an appropriate value
     target.actOnBubbleReceived(bubble);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Пример #9
0
 public void ReceivedMessageTest()
 {
     JabberWire target = new JabberWire(); // TODO: Initialize to an appropriate value
     object obj = null; // TODO: Initialize to an appropriate value
     target.ReceivedMessage(obj);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Пример #10
0
 public void ReceiveCommandTest()
 {
     JabberWire target = new JabberWire(); // TODO: Initialize to an appropriate value
     string message = string.Empty; // TODO: Initialize to an appropriate value
     target.ReceiveCommand(message);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Пример #11
0
 public void LogoutTest()
 {
     JabberWire target = new JabberWire(); // TODO: Initialize to an appropriate value
     target.Logout();
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Пример #12
0
 public void IsConnectedTest()
 {
     JabberWire target = new JabberWire(); // TODO: Initialize to an appropriate value
     bool expected = false; // TODO: Initialize to an appropriate value
     bool actual;
     actual = target.IsConnected();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Пример #13
0
 public void CurrentClassesTest()
 {
     JabberWire target = new JabberWire(); // TODO: Initialize to an appropriate value
     List<ConversationDetails> actual;
     actual = target.CurrentClasses;
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Пример #14
0
 public void stanzaTest1()
 {
     JabberWire target = new JabberWire(); // TODO: Initialize to an appropriate value
     Element stanza = null; // TODO: Initialize to an appropriate value
     target.stanza(stanza);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Пример #15
0
 public void CommandBoardToMoveToTest()
 {
     JabberWire target = new JabberWire(); // TODO: Initialize to an appropriate value
     string board = string.Empty; // TODO: Initialize to an appropriate value
     string slide = string.Empty; // TODO: Initialize to an appropriate value
     target.CommandBoardToMoveTo(board, slide);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Пример #16
0
 public void WakeUpTest()
 {
     JabberWire target = new JabberWire(); // TODO: Initialize to an appropriate value
     string room = string.Empty; // TODO: Initialize to an appropriate value
     target.WakeUp(room);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Пример #17
0
 public void actOnAutoShapeReceivedTest()
 {
     JabberWire target = new JabberWire(); // TODO: Initialize to an appropriate value
     TargettedAutoShape autoshape = null; // TODO: Initialize to an appropriate value
     target.actOnAutoShapeReceived(autoshape);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Пример #18
0
 public void ResetTest()
 {
     JabberWire target = new JabberWire(); // TODO: Initialize to an appropriate value
     string caller = string.Empty; // TODO: Initialize to an appropriate value
     target.Reset(caller);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Пример #19
0
 public void actOnDirtyLiveWindowReceivedTest()
 {
     JabberWire target = new JabberWire(); // TODO: Initialize to an appropriate value
     TargettedDirtyElement element = null; // TODO: Initialize to an appropriate value
     target.actOnDirtyLiveWindowReceived(element);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Пример #20
0
 public void SendDirtyConversationDetailsTest()
 {
     JabberWire target = new JabberWire(); // TODO: Initialize to an appropriate value
     string jid = string.Empty; // TODO: Initialize to an appropriate value
     target.SendDirtyConversationDetails(jid);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Пример #21
0
 public void actOnDirtyTextReceivedTest()
 {
     JabberWire target = new JabberWire(); // TODO: Initialize to an appropriate value
     MeTLStanzas.DirtyText dirtyText = null; // TODO: Initialize to an appropriate value
     target.actOnDirtyTextReceived(dirtyText);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Пример #22
0
 public void SendDirtyVideoTest()
 {
     JabberWire target = new JabberWire(); // TODO: Initialize to an appropriate value
     TargettedDirtyElement element = null; // TODO: Initialize to an appropriate value
     target.SendDirtyVideo(element);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Пример #23
0
 public void actOnLiveWindowReceivedTest()
 {
     JabberWire target = new JabberWire(); // TODO: Initialize to an appropriate value
     LiveWindowSetup window = null; // TODO: Initialize to an appropriate value
     target.actOnLiveWindowReceived(window);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Пример #24
0
 public void SendMoveBoardToSlideTest()
 {
     JabberWire target = new JabberWire(); // TODO: Initialize to an appropriate value
     BoardMove boardMove = null; // TODO: Initialize to an appropriate value
     target.SendMoveBoardToSlide(boardMove);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Пример #25
0
 public void JabberWireConstructorTest1()
 {
     Credentials credentials = null; // TODO: Initialize to an appropriate value
     string SERVER = string.Empty; // TODO: Initialize to an appropriate value
     JabberWire target = new JabberWire(credentials, SERVER);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
Пример #26
0
 public void SendQuizTest()
 {
     JabberWire target = new JabberWire(); // TODO: Initialize to an appropriate value
     QuizQuestion parameters = null; // TODO: Initialize to an appropriate value
     target.SendQuiz(parameters);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Пример #27
0
 public void actOnVideoReceivedTest()
 {
     JabberWire target = new JabberWire(); // TODO: Initialize to an appropriate value
     TargettedVideo video = null; // TODO: Initialize to an appropriate value
     target.actOnVideoReceived(video);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Пример #28
0
 public void SendSyncMoveToTest()
 {
     JabberWire target = new JabberWire(); // TODO: Initialize to an appropriate value
     int where = 0; // TODO: Initialize to an appropriate value
     target.SendSyncMoveTo(where);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Пример #29
0
 public void getCurrentClassesTest()
 {
     JabberWire target = new JabberWire(); // TODO: Initialize to an appropriate value
     object _unused = null; // TODO: Initialize to an appropriate value
     target.getCurrentClasses(_unused);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Пример #30
0
 public void SendTextboxTest()
 {
     JabberWire target = new JabberWire(); // TODO: Initialize to an appropriate value
     TargettedTextBox box = null; // TODO: Initialize to an appropriate value
     target.SendTextbox(box);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }