diff --git a/Applications/Converter/Tests/Sources/OtherViewModelTest.cs b/Applications/Converter/Tests/Sources/OtherViewModelTest.cs index 622c8ec99..871015f4f 100644 --- a/Applications/Converter/Tests/Sources/OtherViewModelTest.cs +++ b/Applications/Converter/Tests/Sources/OtherViewModelTest.cs @@ -58,8 +58,8 @@ class OtherViewModelTest : ViewModelFixture public void MainViewModel() => Invoke(vm => { Assert.That(vm.Title, Does.StartWith(nameof(MainViewModel))); - Assert.That(vm.Title, Does.Contain("CubePDF 1.0.1")); - Assert.That(vm.Version, Does.StartWith("1.0.1 (").And.EndsWith(")")); + Assert.That(vm.Title, Does.Contain("CubePDF 1.0.2")); + Assert.That(vm.Version, Does.StartWith("1.0.2 (").And.EndsWith(")")); Assert.That(vm.Uri, Is.EqualTo(new Uri("https://www.cube-soft.jp/cubepdf/"))); }); diff --git a/Applications/Converter/Tests/Sources/SettingTest.cs b/Applications/Converter/Tests/Sources/SettingTest.cs index 51f7d4a92..e8c692389 100644 --- a/Applications/Converter/Tests/Sources/SettingTest.cs +++ b/Applications/Converter/Tests/Sources/SettingTest.cs @@ -61,7 +61,7 @@ public void Create() Assert.That(dest.Assembly.GetProduct(), Is.EqualTo("Cube.Pdf.Converter.Tests")); Assert.That(dest.DocumentName.Source, Is.Empty); Assert.That(dest.DocumentName.Value, Is.EqualTo("Cube.Pdf.Converter.Tests")); - Assert.That(dest.Version.ToString(), Is.EqualTo("1.0.1")); + Assert.That(dest.Version.ToString(), Is.EqualTo("1.0.2")); Assert.That(dest.Value, Is.Not.Null); Assert.That(dest.Digest, Is.Null); } diff --git a/Applications/Editor/Tests/Sources/Presenters/SettingTest.cs b/Applications/Editor/Tests/Sources/Presenters/SettingTest.cs index 3f8cda312..cf894c69a 100644 --- a/Applications/Editor/Tests/Sources/Presenters/SettingTest.cs +++ b/Applications/Editor/Tests/Sources/Presenters/SettingTest.cs @@ -78,7 +78,7 @@ public void Cancel() => Open("Sample.pdf", "", vm => { Assert.That(e.Title, Is.Not.Null.And.Not.Empty); Assert.That(e.Version.Text, Is.Not.Null.And.Not.Empty); - Assert.That(e.Version.Value, Does.StartWith("Cube.Pdf.Editor.Tests 0.5.5β ")); + Assert.That(e.Version.Value, Does.StartWith("Cube.Pdf.Editor.Tests 0.5.6β ")); Assert.That(e.Windows.Text, Does.StartWith("Microsoft Windows")); Assert.That(e.Framework.Text, Does.StartWith("Microsoft .NET Framework")); Assert.That(e.Link.Text, Is.EqualTo("Copyright © 2010 CubeSoft, Inc."));