Merge "delete all .class files" into stable/beryllium
[nemo.git] / nemo-tools / sandbox / src / test / java / org / opendaylight / nemo / tool / sandbox / northbound / CreateRequestTest.java
1 /*
2  * Copyright (c) 2016 Huawei, Inc. and others. All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.nemo.tool.sandbox.northbound;
10
11 import junit.framework.TestCase;
12 import org.junit.Before;
13 import org.junit.Test;
14
15 import static org.junit.Assert.*;
16
17 /**
18  * Created by zhangmeng on 2016/1/14.
19  */
20 public class CreateRequestTest extends TestCase {
21     private CreateRequest createRequest;
22     @Before
23     public void setUp() throws Exception {
24
25     }
26
27     @Test
28     public void testInit()throws Exception{
29         createRequest = new CreateRequest();
30     }
31 }