Search in sources :

Example 1 with TransformationFunctionFacade

use of io.hops.hopsworks.common.featurestore.transformationFunction.TransformationFunctionFacade in project hopsworks by logicalclocks.

the class TestTransformationFunctionController method setup.

@Before
public void setup() {
    project = Mockito.mock(Project.class);
    user = Mockito.mock(Users.class);
    fs = new Featurestore();
    transformationFunctionFacade = Mockito.mock(TransformationFunctionFacade.class);
    transformationFunctionController = new TransformationFunctionController(transformationFunctionFacade);
}
Also used : Project(io.hops.hopsworks.persistence.entity.project.Project) Featurestore(io.hops.hopsworks.persistence.entity.featurestore.Featurestore) TransformationFunctionFacade(io.hops.hopsworks.common.featurestore.transformationFunction.TransformationFunctionFacade) Users(io.hops.hopsworks.persistence.entity.user.Users) TransformationFunctionController(io.hops.hopsworks.common.featurestore.transformationFunction.TransformationFunctionController) Before(org.junit.Before)

Aggregations

TransformationFunctionController (io.hops.hopsworks.common.featurestore.transformationFunction.TransformationFunctionController)1 TransformationFunctionFacade (io.hops.hopsworks.common.featurestore.transformationFunction.TransformationFunctionFacade)1 Featurestore (io.hops.hopsworks.persistence.entity.featurestore.Featurestore)1 Project (io.hops.hopsworks.persistence.entity.project.Project)1 Users (io.hops.hopsworks.persistence.entity.user.Users)1 Before (org.junit.Before)1