Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/xwt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLluis Sanchez <lluis@xamarin.com>2013-06-07 19:22:41 +0400
committerLluis Sanchez <lluis@xamarin.com>2013-06-07 19:22:41 +0400
commit2f6f93d0b723fe7eed0ead58a305b4013d484408 (patch)
tree004393435a4924b0601bac99a4505a173388f77e /Testing
parentfa19320e89e914ae499ad7f3adb199cb03cbc78c (diff)
Track api changes in Slider API
Diffstat (limited to 'Testing')
-rw-r--r--Testing/Tests/SliderTests.cs22
1 files changed, 20 insertions, 2 deletions
diff --git a/Testing/Tests/SliderTests.cs b/Testing/Tests/SliderTests.cs
index 85019117..e0e5430d 100644
--- a/Testing/Tests/SliderTests.cs
+++ b/Testing/Tests/SliderTests.cs
@@ -27,11 +27,29 @@ using System;
namespace Xwt
{
- public class SliderTests: WidgetTests
+ public abstract class SliderTests: WidgetTests
{
public override Widget CreateWidget ()
{
- return new Slider ();
+ return CreateSlider ();
+ }
+
+ public abstract Slider CreateSlider ();
+ }
+
+ public class VSliderTests: SliderTests
+ {
+ public override Slider CreateSlider ()
+ {
+ return new VSlider ();
+ }
+ }
+
+ public class HSliderTests: SliderTests
+ {
+ public override Slider CreateSlider ()
+ {
+ return new HSlider ();
}
}
}