System.Diagnostics.Tests.FileVersionInfoTest.FileVersionInfo_DifferentFileVersionAndProductVersion C# (CSharp) Method

FileVersionInfo_DifferentFileVersionAndProductVersion() private method

        public void FileVersionInfo_DifferentFileVersionAndProductVersion()
        {
            // Mtxex.dll
            VerifyVersionInfo(Path.Combine(Directory.GetCurrentDirectory(), SecondNativeLibraryFileName), new MyFVI()
            {
                Comments = "",
                CompanyName = "",
                FileBuildPart = 0,
                FileDescription = "",
                FileMajorPart = 0,
                FileMinorPart = 65535,
                FileName = Path.Combine(Directory.GetCurrentDirectory(), SecondNativeLibraryFileName),
                FilePrivatePart = 2,
                FileVersion = "0.65535.0.2",
                InternalName = "SecondNa.dll",
                IsDebug = false,
                IsPatched = false,
                IsPrivateBuild = false,
                IsPreRelease = false,
                IsSpecialBuild = false,
                Language = GetFileVersionLanguage(0x0400),//Process Default Language
                LegalCopyright = "Copyright (C) 1 - 2014",
                LegalTrademarks = "",
                OriginalFilename = "SecondNa.dll",
                PrivateBuild = "",
                ProductBuildPart = 0,
                ProductMajorPart = 1,
                ProductMinorPart = 0,
                ProductName = "Unknown_Product_Name",
                ProductPrivatePart = 1,
                ProductVersion = "1.0.0.1",
                SpecialBuild = "",
            });
        }