Have you loaded your controller in the test.js before you start with the Quint ? you can either do,
jQuery.sap.require("path-of-controller");
or the AMD style
sap.ui.require(["path/of/controller"], function(MyController){ //Quint code
});- Sakthivel