We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e72520f commit e900398Copy full SHA for e900398
Tests/VersionAndBranchFinderTests.cs
@@ -1,5 +1,4 @@
1
-using System.Diagnostics;
2
-using GitVersion;
+using GitVersion;
3
using GitVersionTask;
4
using LibGit2Sharp;
5
using NUnit.Framework;
@@ -21,6 +20,6 @@ public void ShouldBeAbleGetVersionFromGitDir()
21
20
}
22
SemanticVersion versionAndBranch;
23
VersionAndBranchFinder.TryGetVersion(ASBMTestRepoWorkingDirPath, out versionAndBranch);
24
- Debug.Write(versionAndBranch);
+ Assert.IsNotNull(versionAndBranch);
25
26
0 commit comments