blob: 802c3d4e02268cb9a75b5dbb618d6b8762454249 [file] [log] [blame]
package org.example.vanilla
import org.scalatest.FlatSpec
import org.scalatest.Matchers
import org.apache.predictionio.controller.Engine
class EngineTest
extends FlatSpec with Matchers {
"apply" should "return a new engine instance" in {
val engine = VanillaEngine.apply()
engine shouldBe an [Engine[_,_,_,_,_,_]]
}
}