Clover Coverage Report - Subsonic-Android Coverage Report
Coverage timestamp: ven dic 19 2014 17:57:13 EST
../../../../../img/srcFileCovDistChart0.png 86% of files have more coverage
1   17   1   1
0   11   1   1
1     1  
1    
This report was generated with an evaluation server license. Purchase Clover or configure your license.
 
  TrustSelfSignedStrategy       Line # 8 1 1 0% 0.0
 
No Tests
 
1    package net.sourceforge.subsonic.androidapp.service;
2   
3    import java.security.cert.CertificateException;
4    import java.security.cert.X509Certificate;
5   
6    import net.sourceforge.subsonic.androidapp.service.ssl.TrustStrategy;
7   
 
8    public class TrustSelfSignedStrategy implements TrustStrategy {
9   
 
10  0 toggle @Override
11    public boolean isTrusted(X509Certificate[] chain, String authType)
12    throws CertificateException {
13    // TODO Auto-generated method stub
14  0 return false;
15    }
16   
17    }