コード例 #1
0
ファイル: TestRedact.cs プロジェクト: killbug2004/WSProf
 public void TestActualRedact()
 {
     string testDoc = TestUtils.TestFileUtils.MakeRootPathAbsolute(@"Projects\Workshare.API\Workshare.API.Tests\TestDocs\test.doc");
     using (TempFile tf = new TempFile(testDoc))
     {
         string initialHash = tf.MD5Sum;
         Redactor r = new Redactor();
         r.RedactFile(tf.FilePath);
         string newHash = tf.MD5Sum;
         Assert.AreNotEqual(initialHash, newHash, "We expected the redaction to change the file contents");
     }
 }
コード例 #2
0
ファイル: TestRedact.cs プロジェクト: killbug2004/WSProf
 public void TestRelativePath()
 {
     IRedactor c = new Redactor();
     c.RedactFile("test.doc");
 }