public void GetFromMonoRuntime_OnMono_VersionNotNull()
        {
            if (!RuntimeInfo.GetRuntime().IsMono())
            {
                Assert.Ignore("This test is only relevant when running on Mono.");
            }
            else
            {
                var actual = RuntimeInfo.GetFromMonoRuntime();

                Assert.AreEqual("Mono", actual.Name);
                Assert.NotNull(actual.Version);
                Assert.Null(actual.FrameworkInstallation);
                Assert.NotNull(actual.Raw);
            }
        }