Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
mwangggg committed Nov 2, 2023
1 parent ad51a39 commit 8da7812
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
26 changes: 26 additions & 0 deletions src/test/java/io/cryostat/CustomEventTemplate.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package io.cryostat;

import static io.cryostat.TestUtils.givenBasicAuth;

import org.eclipse.microprofile.openapi.models.media.XML;
import org.junit.Test;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;

public class CustomEventTemplate {

@BeforeEach
public void setup() {

}

@AfterEach
public void afterEach() {

}

@Test
public void testCustomEventTemplate() {
givenBasicAuth().get().contentType(XML).then().post().statusCode(200);
}
}
1 change: 0 additions & 1 deletion src/test/java/io/cryostat/HealthTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

import static io.restassured.RestAssured.when;
import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.Matchers.*;

import java.util.Optional;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

import static io.cryostat.TestUtils.givenBasicAuth;
import static io.restassured.RestAssured.given;
import static org.hamcrest.Matchers.*;

import java.util.HashMap;
import java.util.List;
Expand Down

0 comments on commit 8da7812

Please sign in to comment.