public void TestConstructor() { //WindowControlから作成。 { NativeSpinButton spin = new NativeSpinButton(testDlg.IdentifyFromDialogId(1021)); int min = 0, max = 0; spin.GetRange(ref min, ref max); Assert.AreEqual(1000, max); } //ハンドルから作成。 { NativeSpinButton spin = new NativeSpinButton(app, testDlg.IdentifyFromDialogId(1021).Handle); int min = 0, max = 0; spin.GetRange(ref min, ref max); Assert.AreEqual(1000, max); } }
public void TestRange() { NativeSpinButton spin = new NativeSpinButton(testDlg.IdentifyFromDialogId(1021)); int min = 0, max = 0; spin.GetRange(ref min, ref max); Assert.AreEqual(1, min); Assert.AreEqual(1000, max); }