aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/aai/charts/aai-babel/resources/config
AgeCommit message (Expand)AuthorFilesLines
2019-03-27Correct generic-vnf widget data-del-flagmark.j.leonard1-1/+1
2019-03-27Add Widget UUIDs to the TOSCA mappings JSONmark.j.leonard1-18/+54
2019-03-05[Babel] Add Widget Type mappingsmark.j.leonard1-0/+92
2019-02-06[Babel] Reworked TOSCA Mapping configurationmark.j.leonard1-19/+51
2019-01-30[Babel] Add type mapping JSON configurationmark.j.leonard2-1/+21
2018-09-20[aai-babel] Fix collection resource widget detailsMark Tooski1-3/+3
2018-09-12[Babel] Add mandatory group filter properties filemark.j.leonard1-0/+1
2018-09-12Add CR Widget IDs to the generator propertiesmark.j.leonard1-0/+3
2018-08-30Apache2 License additiontoshrajbhardwaj4-48/+92
2018-07-03Add new Widget ids to Babel configLee, Tian (tl5884)1-0/+3
2018-05-08Update ML and Babel logback.xml configmark.j.leonard1-1/+1
2018-05-02Update babel and ml to work properly in oomJimmy Forsyth4-4/+183
2018-04-11Add BABEL chart to AAIMichael Arrastia4-0/+313
"cm"> * See the License for the specific language governing permissions and * limitations under the License. */ package org.onap.ccsdk.cds.controllerblueprints.core.utils import org.junit.Test import org.slf4j.LoggerFactory class TopologicalSortingUtilsTest { private val log = LoggerFactory.getLogger(TopologicalSortingUtilsTest::class.java) @Test fun testSorting() { val graph: TopologicalSortingUtils<String> = TopologicalSortingUtils() graph.add("bundle-id", "bundle-mac") graph.add("bundle-id", "bundle-ip") graph.add("bundle-mac", "bundle-ip") graph.add("bundle-ip", "bundle-mac") log.debug("The current graph: $graph") log.debug("In-degrees: " + graph.inDegree()) log.debug("Out-degrees: " + graph.outDegree()) log.debug("A topological sort of the vertices: " + graph.topSort()) } }