rename nf-proxy to network-cm-proxy
[cps.git] / cps-ncmp-rest / src / test / groovy / org / onap / cps / ncmp / config / NetworkCmProxyConfigSpec.groovy
@@ -1,6 +1,7 @@
 /*
  * ============LICENSE_START=======================================================
  *  Copyright (C) 2021 highstreet technologies GmbH
+ *  Modification Copyright (C) 2021 Nordix Foundation
  *  ================================================================================
  *  Licensed under the Apache License, Version 2.0 (the "License");
  *  you may not use this file except in compliance with the License.
  *  ============LICENSE_END=========================================================
  */
 
-package org.onap.cps.nfproxy.config
+package org.onap.cps.ncmp.config
 
 import spock.lang.Specification
 import springfox.documentation.spring.web.plugins.Docket
 
-class NfProxyConfigSpec extends Specification {
-    def objectUnderTest = new NfProxyConfig()
+class NetworkCmProxyConfigSpec extends Specification {
+    def objectUnderTest = new NetworkCmProxyConfig()
 
-    def 'NfProxy configuration has a Docket API.'() {
-        expect: 'the NfProxy configuration has a Docket API'
+    def 'NetworkCmProxy configuration has a Docket API.'() {
+        expect: 'the NetworkCmProxy configuration has a Docket API'
             objectUnderTest.api() instanceof Docket
     }
 }