From 9115745e4f807963e191e1d22040cc75a7a5d42c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?BenLampson=28=E8=B5=B5=E5=85=83=E6=BA=90=29?= <58603432@qq.com> Date: Thu, 26 Sep 2019 09:07:34 +0800 Subject: [PATCH] Update controller_test.go Former-commit-id: 2f2576255b988f29e8745bc62f5a14a848349bc5 --- mvc/controller_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mvc/controller_test.go b/mvc/controller_test.go index 5575f421..49d561e1 100644 --- a/mvc/controller_test.go +++ b/mvc/controller_test.go @@ -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))