Update controller_test.go

Former-commit-id: 2f2576255b988f29e8745bc62f5a14a848349bc5
This commit is contained in:
BenLampson(赵元源) 2019-09-26 09:07:34 +08:00 committed by GitHub
parent 986be58702
commit 9115745e4f

View File

@ -409,6 +409,9 @@ func (c *testControllerRelPathFromFunc) GetSomethingByBy(string, int) {}
func (c *testControllerRelPathFromFunc) GetSomethingNewBy(string, int) {} // two input arguments, one By which is the latest word.
func (c *testControllerRelPathFromFunc) GetSomethingByElseThisBy(bool, int) {} // two input arguments
func (c *testControllerRelPathFromFunc) GetLocationX(){}
func (c *testControllerRelPathFromFunc) GetLocationXBy(int){}
func TestControllerRelPathFromFunc(t *testing.T) {
app := iris.New()
New(app).Handle(new(testControllerRelPathFromFunc))