Skip to content
This repository was archived by the owner on Jan 12, 2024. It is now read-only.

Commit d80d944

Browse files
committed
Added a test
1 parent 542f3bc commit d80d944

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)