(self)
| 303 | self.d = DynDiscBayesianNetwork(self.skel, self.nd) |
| 304 | |
| 305 | def test_randomsample(self): |
| 306 | sample = self.d.randomsample(10) |
| 307 | for i in range(1, 10): |
| 308 | self.assertEqual(sample[0]['Difficulty'], sample[i]['Difficulty']) |
| 309 | |
| 310 | |
| 311 | class TestPGMLearner(unittest.TestCase): |
nothing calls this directly
no test coverage detected