public void MyTestInitialize()
 {
     tmp_file = Path.GetTempFileName();
     File.Copy("test.bin", tmp_file, true);
     log = new APMLog(tmp_file);
 }
 public void testWriteOutcome()
 {
     log.outcome = APMLogGameOutcome.lose;
     log = new APMLog(tmp_file);
     Assert.AreEqual(APMLogGameOutcome.lose, log.outcome);
 }
Пример #3
0
 public void MyTestInitialize()
 {
     log = new APMLog("test.bin");
 }