-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
OWDataSampler: Do not show messages when data is removed
- Loading branch information
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Test methods with long descriptive names can omit docstrings | ||
# pylint: disable=missing-docstring | ||
from Orange.data import Table | ||
from Orange.widgets.data.owdatasampler import OWDataSampler | ||
from Orange.widgets.tests.base import WidgetTest | ||
|
||
|
||
class TestOWDataSampler(WidgetTest): | ||
@classmethod | ||
def setUpClass(cls): | ||
super().setUpClass() | ||
cls.iris = Table("iris") | ||
|
||
def setUp(self): | ||
self.widget = self.create_widget(OWDataSampler) | ||
|
||
def test_error_message(self): | ||
""" Check if error message appears and then disappears when | ||
data is removed from input""" | ||
self.widget.controlledAttributes["sampling_type"][0].control.buttons[ | ||
2].click() | ||
self.send_signal("Data", self.iris) | ||
self.assertFalse(self.widget.Error.too_many_folds.is_shown()) | ||
self.send_signal("Data", self.iris[:5]) | ||
self.assertTrue(self.widget.Error.too_many_folds.is_shown()) | ||
self.send_signal("Data", None) | ||
self.assertFalse(self.widget.Error.too_many_folds.is_shown()) |