/* * Copyright (c) 2015 Hewlett Packard Enterprise Development LP. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.nic.listeners.impl; import org.junit.Before; import org.junit.Test; import org.mockito.Mock; import org.mockito.Mockito; import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.LinkId; import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.network.topology.topology.Link; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; /** * Created by yrineu on 12/01/16. */ public class TopologyLinkUpdateImplTest { private TopologyLinkUpdatedImpl topologyLinkUpdated; @Mock private Link linkMock; @Mock private LinkId linkIdMock; @Before public void setUp() { topologyLinkUpdated = Mockito.spy(new TopologyLinkUpdatedImpl(linkMock, linkIdMock)); } @Test public void testVerifyParameters() { assertNotNull(topologyLinkUpdated.getTimeStamp()); assertEquals(linkMock, topologyLinkUpdated.getLink()); assertEquals(linkIdMock, topologyLinkUpdated.getLinkId()); assertTrue(topologyLinkUpdated instanceof TopologyLinkUpdatedImpl); } }