Coverage Report - liquibase.statement.core.DropIndexStatement
 
Classes in this File Line Coverage Branch Coverage Complexity
DropIndexStatement
75%
9/12
N/A
1
 
 1  
 package liquibase.statement.core;
 2  
 
 3  
 import liquibase.statement.AbstractSqlStatement;
 4  
 
 5  
 public class DropIndexStatement extends AbstractSqlStatement {
 6  
 
 7  
     private String indexName;
 8  
     private String tableSchemaName;
 9  
     private String tableName;
 10  
     private String associatedWith;
 11  
 
 12  47
     public DropIndexStatement(String indexName, String tableSchemaName, String tableName, String associatedWith) {
 13  47
         this.tableSchemaName = tableSchemaName;
 14  47
         this.indexName = indexName;
 15  47
         this.tableName = tableName;
 16  47
         this.associatedWith = associatedWith;
 17  47
     }
 18  
 
 19  
     public String getTableSchemaName() {
 20  1
         return tableSchemaName;
 21  
     }
 22  
 
 23  
     public String getIndexName() {
 24  16
         return indexName;
 25  
     }
 26  
 
 27  
     public String getTableName() {
 28  3
         return tableName;
 29  
     }
 30  
 
 31  
     public String getAssociatedWith() {
 32  0
         return associatedWith;
 33  
     }
 34  
 
 35  
     public void setAssociatedWith(String associatedWith) {
 36  0
         this.associatedWith = associatedWith;
 37  0
     }
 38  
 }