コード例 #1
0
ファイル: WpfTester.cs プロジェクト: tfreitasleal/MvvmFx
 private void Run(TestWpf sut)
 {
     for (var index = 0; index < Program.Iterations; index++)
     {
         var temp = (index + 1).ToString(CultureInfo.InvariantCulture);
         sut.Number.Text = temp;
         sut.FullName.Text = "FullName " + temp;
     }
 }
コード例 #2
0
ファイル: WpfTester.cs プロジェクト: yzwbrian/MvvmFx
 private void Run(TestWpf sut)
 {
     for (var index = 0; index < Program.Iterations; index++)
     {
         var temp = (index + 1).ToString(CultureInfo.InvariantCulture);
         sut.Number.Text   = temp;
         sut.FullName.Text = "FullName " + temp;
     }
 }
コード例 #3
0
ファイル: WpfTester.cs プロジェクト: tfreitasleal/MvvmFx
 internal WpfTester()
 {
     _subjectUnderTest = new TestWpf();
     _anotherSubjectUnderTest = new TestWpf();
     SymmetricObjects();
     _subjectUnderTest = new TestWpf();
     _guineaPig = new INPC();
     AsymmetricObjects();
 }
コード例 #4
0
ファイル: WpfTester.cs プロジェクト: yzwbrian/MvvmFx
 internal WpfTester()
 {
     _subjectUnderTest        = new TestWpf();
     _anotherSubjectUnderTest = new TestWpf();
     SymmetricObjects();
     _subjectUnderTest = new TestWpf();
     _guineaPig        = new INPC();
     AsymmetricObjects();
 }