diff options
author | xuegao <xg353y@intl.att.com> | 2019-07-18 17:45:34 +0200 |
---|---|---|
committer | xuegao <xg353y@intl.att.com> | 2019-07-18 17:45:34 +0200 |
commit | d8bed32cb3f84d9cfb18332b07742701f5d57379 (patch) | |
tree | 2de9bc046a228b8b98135a1e26f2307b312c3648 /ui-react/src/__test__/OpenLoopModal.test.js | |
parent | 0ce38c26f68efa97f7d16ec9bbba5888982d97ba (diff) |
Integrate testing framework
Integrate Jest and Enzyme testing framework.
Issue-ID: CLAMP-425
Change-Id: I50427a5171c77c2d064fe5e913a46f95c4eb43bc
Signed-off-by: xuegao <xg353y@intl.att.com>
Diffstat (limited to 'ui-react/src/__test__/OpenLoopModal.test.js')
-rw-r--r-- | ui-react/src/__test__/OpenLoopModal.test.js | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/ui-react/src/__test__/OpenLoopModal.test.js b/ui-react/src/__test__/OpenLoopModal.test.js new file mode 100644 index 000000000..044eeda89 --- /dev/null +++ b/ui-react/src/__test__/OpenLoopModal.test.js @@ -0,0 +1,35 @@ +/*- + * ============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 OpenLoopModal from '../components/dialogs/OpenLoop/OpenLoopModal'; + +describe('Verify OpenLoopModal', () => { + + it('Test the render method', () => { + const component = shallow(<OpenLoopModal/>); + expect(component).toMatchSnapshot(); + }); + + +}); |