2  * ============LICENSE_START======================================================= ONAP : SO
 
   3  * ================================================================================ Copyright (C) 2018 TechMahindra
 
   4  * ================================================================================ Licensed under the Apache License,
 
   5  * Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy
 
   8  * http://www.apache.org/licenses/LICENSE-2.0
 
  10  * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
 
  11  * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
 
  12  * specific language governing permissions and limitations under the License.
 
  13  * ============LICENSE_END=========================================================
 
  15 package org.onap.so.cloudify.exceptions;
 
  17 import static org.junit.Assert.*;
 
  18 import static org.mockito.Mockito.mock;
 
  19 import org.junit.Test;
 
  20 import org.onap.so.cloudify.v3.model.Execution;
 
  22 public class MsoCloudifyTimeoutTest {
 
  26         Execution execution = mock(Execution.class);
 
  27         MsoCloudifyTimeout mct = new MsoCloudifyTimeout(execution);
 
  29         assert (mct.toString() != null);