Skip to content

Commit

Permalink
add app.json
Browse files Browse the repository at this point in the history
  • Loading branch information
liuwill committed Apr 17, 2018
1 parent f924bc6 commit a406e70
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions app.json
@@ -0,0 +1,5 @@
{
"name": "Getting Started with Gradle on Heroku",
"description": "A bare-bones Gradle app, which can easily be deployed to Heroku.",
"image": "heroku/gradle"
}
@@ -1,7 +1,7 @@
package com.liuwill.demo.kotlinboot.test.integration;

/**
* Created by videopls on 2017/3/17.
* Created by liuwill<liuwill@live.com> on 2017/3/17.
*/

import com.liuwill.demo.kotlinboot.controllers.DataController;
Expand Down
@@ -1,7 +1,7 @@
package com.liuwill.demo.kotlinboot.test.integration;

/**
* Created by videopls on 2017/3/17.
* Created by liuwill<liuwill@live.com> on 2017/3/17.
*/

import com.liuwill.demo.kotlinboot.controllers.ShowController;
Expand Down
Expand Up @@ -14,7 +14,7 @@ import org.junit.Test
import java.net.URL

/**
* Created by videopls on 2017/3/17.
* Created by liuwill<liuwill@live.com> on 2017/3/17.
*/
@RunWith(SpringJUnit4ClassRunner::class) // SpringJUnit支持,由此引入Spring-Test框架支持!
@SpringBootTest(classes = arrayOf(SpringBootKotlinApplication::class), webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
Expand Down
Expand Up @@ -20,7 +20,7 @@ import org.springframework.test.web.servlet.result.MockMvcResultMatchers.*


/**
* Created by videopls on 2017/3/17.
* Created by liuwill<liuwill@live.com> on 2017/3/17.
*/
@RunWith(SpringJUnit4ClassRunner::class) // SpringJUnit支持,由此引入Spring-Test框架支持!
@SpringBootTest(classes = arrayOf(SpringBootKotlinApplication::class), webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
Expand Down

0 comments on commit a406e70

Please sign in to comment.