File: test_owlinearregression.py

package info (click to toggle)
orange3 3.40.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 15,912 kB
  • sloc: python: 162,745; ansic: 622; makefile: 322; sh: 93; cpp: 77
file content (9 lines) | stat: -rw-r--r-- 394 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
from Orange.widgets.model.owlinearregression import OWLinearRegression
from Orange.widgets.tests.base import WidgetTest, WidgetLearnerTestMixin


class TestOWLinearRegression(WidgetTest, WidgetLearnerTestMixin):
    def setUp(self):
        self.widget = self.create_widget(OWLinearRegression,
                                         stored_settings={"auto_apply": False})
        self.init()