Skip to content

Commit

Permalink
Merge pull request odpi#5228 from planetf1/issue5225a
Browse files Browse the repository at this point in the history
Unit test fixes for analytics modeling, glossary author view server, encrypted file connector
  • Loading branch information
planetf1 committed May 27, 2021
2 parents 3fff065 + f901814 commit d8f750c
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 287 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,12 +115,6 @@
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ dependencies {
implementation project(':open-metadata-implementation:frameworks:audit-log-framework')
implementation project(':open-metadata-implementation:frameworks:open-connector-framework')
implementation 'com.fasterxml.jackson.core:jackson-annotations'
testImplementation 'org.junit.jupiter:junit-jupiter-api'

}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,20 +77,14 @@
<artifactId>open-connector-framework</artifactId>
</dependency>

<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
/* Copyright Contributors to the ODPi Egeria category. */
package org.odpi.openmetadata.viewservices.glossaryauthor.properties;

import org.junit.Test;
import org.junit.jupiter.api.Test;
import org.odpi.openmetadata.accessservices.subjectarea.properties.objects.graph.NodeType;

import java.util.ArrayList;
import java.util.List;

import static org.testng.Assert.assertEquals;
import static org.junit.jupiter.api.Assertions.assertEquals;


public class BreadCrumbTrailTest {
Expand Down

0 comments on commit d8f750c

Please sign in to comment.