why are my test cases failing
package com.codegym.task.task05.task0518;
/*
Dog registration
*/
public class Dog {
//write your code here
String name = null;
String color;
int height = 10;
public Dog(String name){
this.name = name;
}
public Dog(String name,int heght){
this.name = name;
this.height = height;
}
public Dog(String name,String color,int height){
this.name = name;
this.color = color;
this.height = height;
}
public static void main(String[] args) {
}
}