Skip to content

Commit

Permalink
rm old test
Browse files Browse the repository at this point in the history
  • Loading branch information
chillleader committed May 2, 2024
1 parent 6b8cca4 commit c89c0f7
Showing 1 changed file with 0 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
*/
package io.camunda.connector.runtime.saas;

import static org.assertj.core.api.Assertions.assertThat;

import io.camunda.zeebe.spring.client.properties.OperateClientConfigurationProperties;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
Expand Down Expand Up @@ -48,17 +46,4 @@ public void contextLoaded() {
// when the Spring context is initialized (e.g.
// https://github.com/camunda/team-connectors/issues/251)
}

@Test
public void operatePropertiesAreSet() {
assertThat(operateProperties.getUrl()).isEqualTo(MockSaaSConfiguration.OPERATE_CLIENT_URL);
assertThat(operateProperties.getAuthUrl())
.isEqualTo(MockSaaSConfiguration.OPERATE_CLIENT_AUTH_URL);
assertThat(operateProperties.getBaseUrl())
.isEqualTo(MockSaaSConfiguration.OPERATE_CLIENT_BASEURL);
assertThat(operateProperties.getClientId())
.isEqualTo(MockSaaSConfiguration.OPERATE_CLIENT_CLIENT_ID);
assertThat(operateProperties.getClientSecret())
.isEqualTo(MockSaaSConfiguration.OPERATE_CLIENT_SECRET);
}
}

0 comments on commit c89c0f7

Please sign in to comment.