< Summary

Information
Class: Renci.SshNet.Sftp.SftpRealPathAsyncResult
Assembly: Renci.SshNet
File(s): \home\appveyor\projects\ssh-net\src\Renci.SshNet\Sftp\SftpRealPathAsyncResult.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 3
Coverable lines: 3
Total lines: 14
Line coverage: 0%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
.ctor(...)100%10%

File(s)

\home\appveyor\projects\ssh-net\src\Renci.SshNet\Sftp\SftpRealPathAsyncResult.cs

#LineLine coverage
 1using System;
 2
 3using Renci.SshNet.Common;
 4
 5namespace Renci.SshNet.Sftp
 6{
 7    internal sealed class SftpRealPathAsyncResult : AsyncResult<string>
 8    {
 9        public SftpRealPathAsyncResult(AsyncCallback asyncCallback, object state)
 010            : base(asyncCallback, state)
 011        {
 012        }
 13    }
 14}