Clover Coverage Report - Main Coverage Report
Coverage timestamp: ven dic 19 2014 16:47:52 EST
../../../../img/srcFileCovDistChart6.png 51% of files have more coverage
9   39   8   1,12
0   31   0,89   8
8     1  
1    
This report was generated with an evaluation server license. Purchase Clover or configure your license.
 
  Adsetting       Line # 3 9 8 52,9% 0.5294118
 
No Tests
 
1    package com.dreamcatcher.bicycle.vo;
2   
 
3    public class Adsetting {
4    private boolean mShowAd = true;
5    private int mPointTotal = 0;
6    private long mNextShowAdTime = 0;
7   
 
8  1 toggle public Adsetting(){
9   
10    }
11   
 
12  0 toggle public Adsetting(boolean mShowAd, int mPointTotal, int nextShowAdTime) {
13  0 this.mShowAd = mShowAd;
14  0 this.mPointTotal = mPointTotal;
15  0 this.mNextShowAdTime = nextShowAdTime;
16    }
 
17  0 toggle public boolean isShowAd() {
18  0 return mShowAd;
19    }
 
20  0 toggle public void setShowAd(boolean showAd) {
21  0 this.mShowAd = showAd;
22    }
 
23  2 toggle public int getPointTotal() {
24  2 return mPointTotal;
25    }
 
26  1 toggle public void setPointTotal(int pointTotal) {
27  1 this.mPointTotal = pointTotal;
28    }
29   
 
30  4 toggle public long getNextShowAdTime() {
31  4 return mNextShowAdTime;
32    }
33   
 
34  1 toggle public void setNextShowAdTime(long nextShowAdTime) {
35  1 this.mNextShowAdTime = nextShowAdTime;
36    }
37   
38   
39    }