Package com.networkid.test

Source Code of com.networkid.test.NetworkIDTest

package com.networkid.test;

import junit.framework.TestCase;

import com.shenyu.NetworkID;

public class NetworkIDTest extends TestCase {

    protected void setUp() throws Exception {
    }

    protected void tearDown() throws Exception {
    }

    //TODO Complete the test case
    public void test_GetterSetter() {
        NetworkID id = new NetworkID();
        id.setName("ShenYu");
        id.setPasswd("passw0rd");
        id.setTimeStamp("");
        id.setURI("http://www.51leifeng.net");
        id.setEmail("smallsmallorgan@gmail.com");
       
    }
}
TOP

Related Classes of com.networkid.test.NetworkIDTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.