コード例 #1
0
ファイル: TimedEventTest.cs プロジェクト: Twistie/TwoServer
 public void StartTest()
 {
     TwoServerWindow twoServer = null; // TODO: Initialize to an appropriate value
     float timeToEvent = 0F; // TODO: Initialize to an appropriate value
     TimedEvent target = new TimedEvent(twoServer, timeToEvent); // TODO: Initialize to an appropriate value
     target.Start();
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
コード例 #2
0
ファイル: TimedEventTest.cs プロジェクト: Twistie/TwoServer
 public void TimedEventConstructorTest()
 {
     TwoServerWindow twoServer = null; // TODO: Initialize to an appropriate value
     float timeToEvent = 0F; // TODO: Initialize to an appropriate value
     TimedEvent target = new TimedEvent(twoServer, timeToEvent);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }