public void UpdateDevPortableChannel() { GeneralAppInfo.ApplicationVersion = "1.0.0.0"; var CurrentUpdateInfo = UpdateInfo.FromString(Resources.dev_update_portable); Assert.That(CurrentUpdateInfo.CheckIfValid(), Is.True); Version v; Version.TryParse(GeneralAppInfo.ApplicationVersion, out v); var IsNewer = CurrentUpdateInfo.Version > v; Assert.That(IsNewer, Is.True); }