Nico creation methodes vides #7
1 changed files with 8 additions and 1 deletions
|
|
@ -5,7 +5,6 @@ import org.junit.jupiter.api.Test;
|
||||||
import java.sql.SQLException;
|
import java.sql.SQLException;
|
||||||
|
|
||||||
public class StatisticsTest {
|
public class StatisticsTest {
|
||||||
Statistics s =new Statistics();
|
|
||||||
//c.setTaille();
|
//c.setTaille();
|
||||||
//c.afficherChiffre1();
|
//c.afficherChiffre1();
|
||||||
//c.afficherNumBonus();
|
//c.afficherNumBonus();
|
||||||
|
|
@ -17,39 +16,47 @@ public class StatisticsTest {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void setTaille(){
|
public void setTaille(){
|
||||||
|
Statistics s =new Statistics();
|
||||||
s.setTaille();
|
s.setTaille();
|
||||||
}
|
}
|
||||||
@Test
|
@Test
|
||||||
public void afficherChiffre1() throws SQLException{
|
public void afficherChiffre1() throws SQLException{
|
||||||
|
Statistics s =new Statistics();
|
||||||
s.afficherChiffre1();
|
s.afficherChiffre1();
|
||||||
}
|
}
|
||||||
@Test
|
@Test
|
||||||
public void afficherCombinaisons2() throws SQLException{
|
public void afficherCombinaisons2() throws SQLException{
|
||||||
|
Statistics s =new Statistics();
|
||||||
s.afficherCombinaisons2(4);
|
s.afficherCombinaisons2(4);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void afficherCombinaisons3() throws SQLException{
|
public void afficherCombinaisons3() throws SQLException{
|
||||||
|
Statistics s =new Statistics();
|
||||||
s.afficherCombinaisons3(32,16);
|
s.afficherCombinaisons3(32,16);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void afficherBonus() throws SQLException{
|
public void afficherBonus() throws SQLException{
|
||||||
|
Statistics s =new Statistics();
|
||||||
s.afficherBonus();
|
s.afficherBonus();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void afficherNumBonus() throws SQLException{
|
public void afficherNumBonus() throws SQLException{
|
||||||
|
Statistics s =new Statistics();
|
||||||
s.afficherNumBonus(1);
|
s.afficherNumBonus(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void afficherNumBonusCombi2() throws SQLException{
|
public void afficherNumBonusCombi2() throws SQLException{
|
||||||
|
Statistics s =new Statistics();
|
||||||
s.afficherNumBonusCombi2(5,10);
|
s.afficherNumBonusCombi2(5,10);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void afficherNumBonusCombi3() throws SQLException{
|
public void afficherNumBonusCombi3() throws SQLException{
|
||||||
|
Statistics s =new Statistics();
|
||||||
s.afficherNumBonusCombi3(28,14,37);
|
s.afficherNumBonusCombi3(28,14,37);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Reference in a new issue