Package com.skype

Examples of com.skype.Call


        }
    }

    public void testCall() throws Exception {
      TestConnector.resetInstance();
        Call call = Skype.getContactList().getFriend("echo123").call();
        Thread.sleep(5000);
        call.finish();

        String result = call.getDuration() + "," + call.getId() + "," + call.getPartnerId() + "," + call.getType();
        if(isRecordingMode()) {
            System.out.println(result);
        } else {
            assertEquals("2,8345,echo123,OUTGOING_P2P", result);
        }
View Full Code Here

TOP

Related Classes of com.skype.Call

Copyright © 2018 www.massapicom. 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.