We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f17ff6c commit a416074Copy full SHA for a416074
phoenixd-test/src/test/java/xyz/tcheeric/phoenixd/operation/impl/AddHeaderOperationTest.java
@@ -1,12 +1,19 @@
1
package xyz.tcheeric.phoenixd.operation.impl;
2
3
+import org.junit.jupiter.api.BeforeEach;
4
import org.junit.jupiter.api.Test;
5
import xyz.tcheeric.phoenixd.common.rest.Operation;
6
+import xyz.tcheeric.phoenixd.test.TestUtils;
7
8
import static org.assertj.core.api.Assertions.assertThat;
9
10
public class AddHeaderOperationTest {
11
12
+ @BeforeEach
13
+ void setUpBaseUrl() {
14
+ TestUtils.setBaseUrl("http://localhost");
15
+ }
16
+
17
// Ensures adding a header preserves the HTTP method for GET operations
18
@Test
19
void addHeaderDoesNotChangeMethodForGetOperation() {
0 commit comments