public void nameTest() { TargettedFile target = new TargettedFile(); // TODO: Initialize to an appropriate value string expected = string.Empty; // TODO: Initialize to an appropriate value string actual; target.name = expected; actual = target.name; Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
private void SendFile(TargettedFile tf) { client.SendFile(tf); }
public void receiveFileResource(TargettedFile tf) { }
public void SendFile(TargettedFile tf) { Trace.TraceInformation("Beginning File send: " + tf.url); Action work = delegate { wire.sendFileResource(tf); }; tryIfConnected(work); }
void IReceiveEvents.receiveFileResource(TargettedFile tf) { FileAvailable(this, new FileAvailableEventArgs { file = tf }); }
public FileResource(TargettedFile file) : this() { fileResource = file; }
public void TargettedFileConstructorTest() { TargettedFile target = new TargettedFile(); Assert.Inconclusive("TODO: Implement code to verify target"); }