aboutsummaryrefslogtreecommitdiffstats
path: root/cxf-logging/src/main/java
diff options
context:
space:
mode:
authorRob Daugherty <rd472p@att.com>2018-08-20 13:00:56 -0400
committerRob Daugherty <rd472p@att.com>2018-08-20 13:05:48 -0400
commit8ad7083991ee9e9a0c026028cebc6ab24ca4d272 (patch)
tree952b4bd59f271006649500245ef7995bcd2e35c7 /cxf-logging/src/main/java
parentaec5940beafce8d11f4ea58d0daca963c6e83b0d (diff)
Docker naming convention
SO is not following the naming convention. Docker image names should have an "onap" prefix. The image names are changed as follows: so/catalog-db-adapter --> onap/so/catalog-db-adapter so/request-db-adapter --> onap/so/request-db-adapter so/sdnc-adapter --> onap/so/sdnc-adapter so/openstack-adapter --> onap/so/openstack-adapter so/vfc-adapter --> onap/so/vfc-adapter so/asdc-controller --> onap/so/asdc-controller so/bpmn-infra --> onap/so/bpmn-infra so/api-handler-infra --> onap/so/api-handler-infra A corresponding change is needed in INT's docker-manifest.csv. Change-Id: I024e42607d5fc57a712ad67709f241ee8720a670 Issue-ID: SO-870 Signed-off-by: Rob Daugherty <rd472p@att.com>
Diffstat (limited to 'cxf-logging/src/main/java')
0 files changed, 0 insertions, 0 deletions
lor: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
/*-
 * ============LICENSE_START=======================================================
 * ONAP CLAMP
 * ================================================================================
 * Copyright (C) 2019 AT&T Intellectual Property. All rights
 *                             reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END============================================
 * ===================================================================
 *
 */
import React from 'react';
import { shallow } from 'enzyme';
import NotFound from './NotFound';

describe('Verify OnapClamp', () => {

	it('Test the render method',  () => {

		const component = shallow(<NotFound />)

		expect(component).toMatchSnapshot();
	});

});