Create template of testcase for WebHook models JSON serialization

This commit is contained in:
Naoki Takezoe
2018-12-24 23:59:14 +09:00
parent a7f183d40d
commit dcf2f1dfdf

View File

@@ -0,0 +1,38 @@
package gitbucket.core.service
import org.json4s.jackson.JsonMethods.parse
import org.json4s._
import org.scalatest.FunSuite
class WebHookJsonFormatSpec extends FunSuite {
import gitbucket.core.api.ApiSpecModels._
test("WebHookCreatePayload"){
fail("TODO")
}
test("WebHookPushPayload"){
fail("TODO")
}
test("WebHookIssuesPayload"){
fail("TODO")
}
test("WebHookPullRequestPayload"){
fail("TODO")
}
test("WebHookIssueCommentPayload"){
fail("TODO")
}
test("WebHookPullRequestReviewCommentPayload"){
fail("TODO")
}
test("WebHookGollumPayload"){
fail("TODO")
}
}