Exemple #1
0
        public void TestProcessRequestWithNullParameter()
        {
            UTorrentClient client = new UTorrentClient("admin", "password");

            client.ProcessRequest <Response>(null);
        }
 public void TestProcessRequestWithNullParameter()
 {
     UTorrentClient client = new UTorrentClient("admin", "password");
     client.ProcessRequest<Response>(null);
 }
Exemple #3
0
        public void TestProcessRequestWithNullParameter()
        {
            UTorrentClient client = new UTorrentClient("admin", "password");

            Assert.ThrowsException <ArgumentNullException>(() => client.ProcessRequest <Response>(null));
        }