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);
}
Aggregations