Add tests

This commit is contained in:
citronneur
2014-09-09 21:24:30 +02:00
parent 5092f579f7
commit f9d6cf145b
3 changed files with 12 additions and 5 deletions

View File

@@ -72,10 +72,6 @@ The private key file and the certificate file are classic cryptographic files fo
The IP and port admin are used in order to spy active sessions thanks to a RDP client (rdpy-rdpclient, remina, mstsc). Common values are 127.0.0.1:3389 to protect from connections by unauthorized user.
### rdpy-admin
rdpy-admin is UI manager of rdpy-rdpproxy. You can manage credentials and watch live sessions simultaneous.
## RDPY Qt Widget
RDPY can also be used as Qt widget throw rdpy.ui.qt4.QRemoteDesktop class. It can be embedded in your own Qt application. qt4reactor must be used in your app for Twisted and Qt to work together. For more details, see sources of rdpy-rdpclient.

View File

@@ -162,7 +162,7 @@ class Client(X224Layer):
def __init__(self, presentation):
"""
@param presentation: upper layer, MCS layer in RDP case
"""
"""testName
X224Layer.__init__(self, presentation)
def connect(self):

11
tests/x224.py Normal file
View File

@@ -0,0 +1,11 @@
'''
@author: sylvain
'''
import unittest
class X224Case(unittest.TestCase):
'''
test case for x224 layer (RDP)
'''
def test_x224_client(self):
pass