From 15519ba12201cf3eca6a2c8e151c895a248262d6 Mon Sep 17 00:00:00 2001 From: Arkadiusz Kondas Date: Thu, 16 Jun 2016 09:58:17 +0200 Subject: [PATCH] simple pipeline test --- tests/Phpml/PipelineTest.php | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 tests/Phpml/PipelineTest.php diff --git a/tests/Phpml/PipelineTest.php b/tests/Phpml/PipelineTest.php new file mode 100644 index 0000000..270fb89 --- /dev/null +++ b/tests/Phpml/PipelineTest.php @@ -0,0 +1,27 @@ +assertEquals($transformers, $pipeline->getTransformers()); + $this->assertEquals($estimator, $pipeline->getEstimator()); + } + +}