There was an error while loading. Please reload this page.
1 parent 542f3bc commit d80d944Copy full SHA for d80d944
1 file changed
cerberus-web/src/test/java/com/nike/cerberus/config/ApplicationConfigurationTest.java
@@ -0,0 +1,15 @@
1
+package com.nike.cerberus.config;
2
+
3
+import com.amazonaws.encryptionsdk.AwsCrypto;
4
+import org.junit.Assert;
5
+import org.junit.Test;
6
7
+public class ApplicationConfigurationTest {
8
+ /** Test of awsCrypto to placate a code coverage tool */
9
+ @Test
10
+ public void testAwsCryptoBuilder() {
11
+ ApplicationConfiguration appConfig = new ApplicationConfiguration();
12
+ AwsCrypto awsCrypto = appConfig.awsCrypto();
13
+ Assert.assertNotNull(awsCrypto);
14
+ }
15
+}
0 commit comments