This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.sql.Connection; | |
| import java.sql.DriverManager; | |
| import java.sql.PreparedStatement; | |
| import java.sql.ResultSet; | |
| import java.sql.SQLException; | |
| import java.sql.Statement; | |
| import org.junit.BeforeClass; | |
| import org.junit.Ignore; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Login | Task | Tech | Pair | Tries | Date | Time | LOC | Coverage | Compl | |
|---|---|---|---|---|---|---|---|---|---|---|
| Team 01 | T 1.01 | OO | PAIR | R2 | D 41838 | 106 | 20 | 100 | 100 | |
| Team 01 | T 1.02 | OO | PAIR | R2 | D 41838 | 111 | 31 | 73 | 100 | |
| Team 01 | T 1.03 | OO | PAIR | R1 | D 41837 | 30 | 11 | 88 | 100 | |
| Team 01 | T 1.04 | OO | PAIR | R1 | D 41837 | 30 | 16 | 91 | 120 | |
| Team 01 | T 1.05 | OO | PAIR | R1 | D 41837 | 20 | 13 | 88 | 141 | |
| Team 01 | T 1.06 | OO | PAIR | R1 | D 41841 | 48 | 13 | 93 | 133 | |
| Team 01 | T 1.07 | OO | PAIR | R1 | D 41841 | 10 | 2 | 93 | 133 | |
| Team 01 | T 1.08 | OO | PAIR | R1 | D 41841 | 2 | 2 | 93 | 133 | |
| Team 01 | T 1.09 | OO | PAIR | R1 | D 41841 | 17 | 18 | 95 | 121 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Login | Task | Tech | Pair | Tries | Date | Time | LOC | Coverage | Compl | |
|---|---|---|---|---|---|---|---|---|---|---|
| Team01 | T 1.01 | OO | PAIR | R2 | D 41838 | 106 | 20 | 100 | 100 | |
| Team01 | T 1.02 | OO | PAIR | R2 | D 41838 | 111 | 31 | 73 | 100 | |
| Team01 | T 1.03 | OO | PAIR | R1 | D 41837 | 30 | 11 | 88 | 100 | |
| Team01 | T 1.04 | OO | PAIR | R1 | D 41837 | 30 | 16 | 91 | 120 | |
| Team01 | T 1.05 | OO | PAIR | R1 | D 41837 | 20 | 13 | 88 | 141 | |
| Team01 | T 1.06 | OO | PAIR | R1 | D 41841 | 48 | 13 | 93 | 133 | |
| Team01 | T 1.07 | OO | PAIR | R1 | D 41841 | 10 | 2 | 93 | 133 | |
| Team01 | T 1.08 | OO | PAIR | R1 | D 41841 | 2 | 2 | 93 | 133 | |
| Team01 | T 1.09 | OO | PAIR | R1 | D 41841 | 17 | 18 | 95 | 121 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.jogodavelha; | |
| public class ExcecaoJogoDaVelha extends RuntimeException { | |
| public ExcecaoJogoDaVelha(String msg) { | |
| super(msg); | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.jogodavelha; | |
| public class ExcecaoJogoDaVelha extends RuntimeException { | |
| public ExcecaoJogoDaVelha(String msg) { | |
| super(msg); | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.jogodavelha; | |
| public class Jogo { | |
| private boolean marcaPrimeiroJogadorX; | |
| public boolean acabou() { | |
| return false; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Exemplo de uso do COMPOR |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package br.ufcg.ppgcc.compor.jcf.experimento.impl; | |
| import java.util.List; | |
| import br.ufcg.ppgcc.compor.jcf.experimento.fachada.Dependente; | |
| import br.ufcg.ppgcc.compor.jcf.experimento.fachada.FachadaExperimento; | |
| import br.ufcg.ppgcc.compor.jcf.experimento.fachada.FontePagadora; | |
| import br.ufcg.ppgcc.compor.jcf.experimento.fachada.Resultado; | |
| import br.ufcg.ppgcc.compor.jcf.experimento.fachada.Titular; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class ExcecaoJogoDaVelha extends RuntimeException { | |
| public ExcecaoJogoDaVelha(String msg) { | |
| super(msg); | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class ArvoreBinaria { | |
| public No raiz; | |
| public No insere(int chave) { | |
| if (raiz == null) { | |
| raiz = new No(); | |
| raiz.chave = chave; | |
| return raiz; |