We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84e343c commit cf96f3aCopy full SHA for cf96f3a
databricks-sdk-java/src/test/java/com/databricks/sdk/core/oauth/IDTokenTest.java
@@ -0,0 +1,15 @@
1
+package com.databricks.sdk.core.oauth;
2
+
3
+import static org.junit.jupiter.api.Assertions.assertEquals;
4
+import org.junit.jupiter.api.Test;
5
6
+public class IDTokenTest {
7
8
+ private static final String accessToken = "testIdToken";
9
10
+ @Test
11
+ void createIDToken() {
12
+ IDToken idToken = new IDToken(accessToken);
13
+ assertEquals(accessToken, idToken.getValue());
14
+ }
15
+}
0 commit comments