Esempio n. 1
0
 public void GetVersionString()
 {
     Assert.Equal(
         "1.2.3", // this is hard-coded in LaunchDarkly.InternalSdk.Tests.csproj
         AssemblyVersions.GetAssemblyVersionStringForType(typeof(AssemblyVersionsTest))
         );
 }
Esempio n. 2
0
 public void GetVersion()
 {
     Assert.Equal(
         new Version("1.2.3.0"),
         AssemblyVersions.GetAssemblyVersionForType(typeof(AssemblyVersionsTest))
         );
 }