Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Kimiega committed Nov 14, 2024
1 parent f615bee commit 752f3c0
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package ru.ifmo.se.dating.authik.api

import org.junit.Assert
import org.junit.Test
import org.springframework.beans.factory.annotation.Autowired
import org.springframework.boot.test.web.client.TestRestTemplate
import ru.ifmo.se.dating.authik.AuthikTestSuite
Expand All @@ -9,6 +10,9 @@ class HttpMonitoringApiTest : AuthikTestSuite() {
@Autowired
private lateinit var rest: TestRestTemplate

@Test
fun emptyTest() = Unit

// TODO write test with https
// @Test
fun healthcheck() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package ru.ifmo.se.dating.matchmaker.api

import org.junit.Assert
import org.junit.Test
import org.springframework.beans.factory.annotation.Autowired
import org.springframework.boot.test.web.client.TestRestTemplate
import ru.ifmo.se.dating.matchmaker.MatchmakerTestSuite
Expand All @@ -9,6 +10,9 @@ class HttpMonitoringApiTest : MatchmakerTestSuite() {
@Autowired
private lateinit var rest: TestRestTemplate

@Test
fun emptyTest() = Unit

// TODO write test with https
// @Test
fun healthcheck() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package ru.ifmo.se.dating.people.api

import org.junit.Assert
import org.junit.Test
import org.springframework.beans.factory.annotation.Autowired
import org.springframework.boot.test.web.client.TestRestTemplate
import ru.ifmo.se.dating.people.PeopleTestSuite
Expand All @@ -9,6 +10,9 @@ class HttpMonitoringApiTest : PeopleTestSuite() {
@Autowired
private lateinit var rest: TestRestTemplate

@Test
fun emptyTest() = Unit

// TODO write test with https
// @Test
fun healthcheck() {
Expand Down

0 comments on commit 752f3c0

Please sign in to comment.