I have two files
test1.js
angular.module("test1",[]).controller("test1Ctrl",function(){
// some code
})
and
test2.js
angular.module("test2",[]).controller("test2Ctrl",function(){
//some code
})
app.js
var app = angular.module("testApp",['test1','test2']);
My question is how I can inject my both controller in app.js from test1.js and test2.js using same module and not using module test1 and test2?

