plugin/tst/software/aws/toolkits/eclipse/amazonq/lsp/encryption/DefaultLspEncryptionManagerTest.java [40:59]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private final class TestObject {
        private String field;
        TestObject(final String field) {
            this.field = field;
        }
        public String getField() {
            return field;
        }
    }

    private final class TestSecretKey {

        private TestSecretKey() { }

        public static SecretKeySpec createTestSecretKey() {
            byte[] keyBytes = new byte[32];
            for (int i = 0; i < keyBytes.length; i++) {
                keyBytes[i] = (byte) i;
            }
            return new SecretKeySpec(keyBytes, "AES");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



plugin/tst/software/aws/toolkits/eclipse/amazonq/lsp/encryption/LspJsonWebTokenTest.java [18:37]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private final class TestObject {
        private String field;
        TestObject(final String field) {
            this.field = field;
        }
        public String getField() {
            return field;
        }
    }

    private final class TestSecretKey {

        private TestSecretKey() { }

        public static SecretKeySpec createTestSecretKey() {
            byte[] keyBytes = new byte[32];
            for (int i = 0; i < keyBytes.length; i++) {
                keyBytes[i] = (byte) i;
            }
            return new SecretKeySpec(keyBytes, "AES");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



