Clover Coverage Report - Main Coverage Report
Coverage timestamp: ven dic 19 2014 16:47:52 EST
0   21   0   -
0   6   -   0
0     -  
1    
This report was generated with an evaluation server license. Purchase Clover or configure your license.
 
  IHttpService       Line # 3 0 0 - -1.0
 
No Tests
 
1    package com.dreamcatcher.bicycle.interfaces;
2   
 
3    public interface IHttpService {
4    /**
5    * get all bicycle infos from server
6    */
7    public void getAllBicyclesInfo();
8   
9    /**
10    * get single bicycle info from server
11    * @param bicycleId
12    */
13    public void getSingleBicycleInfo(int bicycleId);
14   
15    /**
16    * go to server check whether there is new version
17    * @param currentVersionName
18    * @param currentVersionCode
19    */
20    public void checkNewVersion(final String currentVersionName, final int currentVersionCode);
21    }