Exemplo n.º 1
0
 def test_core(self):
     algo = BatchTransformAlgorithmMinute(sim_params=self.sim_params,
                                          env=self.env)
     algo.run(self.source)
     wl = int(algo.window_length * 6.5 * 60)
     for bt in algo.history[wl:]:
         self.assertEqual(len(bt), wl)
Exemplo n.º 2
0
 def test_core(self):
     algo = BatchTransformAlgorithmMinute(sim_params=self.sim_params,
                                          env=self.env)
     algo.run(self.source)
     wl = int(algo.window_length * 6.5 * 60)
     for bt in algo.history[wl:]:
         self.assertEqual(len(bt), wl)
Exemplo n.º 3
0
 def test_window_length(self):
     algo = BatchTransformAlgorithmMinute(sim_params=self.sim_params,
                                          window_length=1, refresh_period=0)
     algo.run(self.source)
     wl = int(algo.window_length * 6.5 * 60)
     np.testing.assert_array_equal(algo.history[:(wl - 1)],
                                   [None] * (wl - 1))
     for bt in algo.history[wl:]:
         self.assertEqual(len(bt), wl)
Exemplo n.º 4
0
 def test_window_length(self):
     algo = BatchTransformAlgorithmMinute(sim_params=self.sim_params,
                                          window_length=1, refresh_period=0)