Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'LibGit2Sharp.Tests/BlobFixture.cs')
-rwxr-xr-xLibGit2Sharp.Tests/BlobFixture.cs15
1 files changed, 7 insertions, 8 deletions
diff --git a/LibGit2Sharp.Tests/BlobFixture.cs b/LibGit2Sharp.Tests/BlobFixture.cs
index 60ab7d93..be8c10a3 100755
--- a/LibGit2Sharp.Tests/BlobFixture.cs
+++ b/LibGit2Sharp.Tests/BlobFixture.cs
@@ -1,14 +1,13 @@
using System.IO;
using System.Text;
using LibGit2Sharp.Tests.TestHelpers;
-using NUnit.Framework;
+using Xunit;
namespace LibGit2Sharp.Tests
{
- [TestFixture]
public class BlobFixture : BaseFixture
{
- [Test]
+ [Fact]
public void CanGetBlobAsUtf8()
{
using (var repo = new Repository(BareTestRepoPath))
@@ -20,7 +19,7 @@ namespace LibGit2Sharp.Tests
}
}
- [Test]
+ [Fact]
public void CanGetBlobSize()
{
using (var repo = new Repository(BareTestRepoPath))
@@ -30,7 +29,7 @@ namespace LibGit2Sharp.Tests
}
}
- [Test]
+ [Fact]
public void CanLookUpBlob()
{
using (var repo = new Repository(BareTestRepoPath))
@@ -40,7 +39,7 @@ namespace LibGit2Sharp.Tests
}
}
- [Test]
+ [Fact]
public void CanReadBlobContent()
{
using (var repo = new Repository(BareTestRepoPath))
@@ -54,7 +53,7 @@ namespace LibGit2Sharp.Tests
}
}
- [Test]
+ [Fact]
public void CanReadBlobStream()
{
using (var repo = new Repository(BareTestRepoPath))
@@ -79,7 +78,7 @@ namespace LibGit2Sharp.Tests
}
}
- [Test]
+ [Fact]
public void CanStageAFileGeneratedFromABlobContentStream()
{
SelfCleaningDirectory scd = BuildSelfCleaningDirectory();