Clover Coverage Report - Atlassian Trusted Apps(Aggregated)
Coverage timestamp: Tue Jun 9 2009 19:34:44 CDT
3   22   3   1
0   18   1   3
3     1  
1    
 
 
  MockKey       Line # 6 3 3 0% 0.0
 
No Tests
 
1    package com.atlassian.security.auth.trustedapps;
2   
3    import java.security.PrivateKey;
4    import java.security.PublicKey;
5   
 
6    class MockKey implements PublicKey, PrivateKey
7    {
 
8  0 toggle public String getAlgorithm()
9    {
10  0 return "ALGY";
11    }
12   
 
13  0 toggle public byte[] getEncoded()
14    {
15  0 return new byte[] { 1, 2, 3, 4 };
16    }
17   
 
18  0 toggle public String getFormat()
19    {
20  0 return "format";
21    }
22    }