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

Commit

Permalink
Added a test
Browse files Browse the repository at this point in the history
  • Loading branch information
shawn-sher committed Jan 3, 2023
1 parent 542f3bc commit d80d944
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package com.nike.cerberus.config;

import com.amazonaws.encryptionsdk.AwsCrypto;
import org.junit.Assert;
import org.junit.Test;

public class ApplicationConfigurationTest {
/** Test of awsCrypto to placate a code coverage tool */
@Test
public void testAwsCryptoBuilder() {
ApplicationConfiguration appConfig = new ApplicationConfiguration();
AwsCrypto awsCrypto = appConfig.awsCrypto();
Assert.assertNotNull(awsCrypto);
}
}

0 comments on commit d80d944

Please sign in to comment.