class TestTablero {
  public static void main(String [] args) {
       boolean [] posiciones = { 
	   false, false, /*posicion 0 a 1*/
	   true, true, true, /*posicion 2 a 4*/
	   true,true /*posicion 5 a 6 */
       };
       Tablero tab = new Tablero(posiciones);
       int posicion1= 0;
       System.out.println( tab.checar(posicion1) == false);
       int posicion2 = 3;
       System.out.println( tab.checar(posicion2) == true);

  }

}