(self)
| 886 | """ |
| 887 | |
| 888 | def setUp(self): |
| 889 | self.mock_deep_estimator = mock.MockEstimator() |
| 890 | # Add methods that can not be autospecced (because of the wrapper) |
| 891 | self.mock_deep_estimator.initialize = MagicMock(name='initialize') |
| 892 | self.mock_deep_estimator.partial_fit = MagicMock(name='partial_fit') |
| 893 | |
| 894 | def test_teach(self): |
| 895 |
nothing calls this directly
no outgoing calls
no test coverage detected