Coverage Report - com.ctrip.apollo.portal.entity.SimpleMsg
 
Classes in this File Line Coverage Branch Coverage Complexity
SimpleMsg
0%
0/6
N/A
1
 
 1  
 package com.ctrip.apollo.portal.entity;
 2  
 
 3  
 public class SimpleMsg {
 4  
 
 5  
   private String msg;
 6  
 
 7  0
   public SimpleMsg(String msg){
 8  0
     this.msg = msg;
 9  0
   }
 10  
 
 11  
   public String getMsg() {
 12  0
     return msg;
 13  
   }
 14  
 
 15  
   public void setMsg(String msg) {
 16  0
     this.msg = msg;
 17  0
   }
 18  
 }