Index général
- Outils
- Références
- Tuyaux
This is an old revision of the document!
Ce TD vise
Si vous dépassez le temps passez à la suite et revenez dessus plus tard. L'énoncé suivant est issu du “getting started” de easyMock mis à jour pour travailler avec junit 5 et voir un peu plus de choses.
public interface Collaborator { // if the document already exists, a "AlreadyAdded" exception is thrown. // if the document fails to be added, false is return. public boolean documentAdded(String title) throws AlreadyAdded ; public void documentRemoved(String title) ; }
Et l'exception associée :
public class AlreadyAdded extends Exception { }
public class ClassTested { public static final String COPY = "_copy"; private Collaborator listener; private HashMap<String, String> documents = new HashMap<>(); public void setListener(Collaborator listener) { this.listener = listener; } public void addDocument(String title, String document) { try { if (listener.documentAdded(title) ) documents.put(title, document); } catch (AlreadyAdded e) { documents.put(title+COPY, document); } } public void removeDocument(String title) { listener.documentRemoved(title); } public Collaborator getListener() { return listener; } public boolean isContained(String key) { return documents.containsKey(key); } }
import static org.easymock.EasyMock.*; import static org.junit.Assert.assertFalse; import static org.junit.jupiter.api.Assertions.assertTrue; import org.easymock.EasyMockSupport; import org.easymock.Mock; import org.easymock.TestSubject; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; public class ExampleTest extends EasyMockSupport { @TestSubject private ClassTested classUnderTest = new ClassTested(); // 2 @Mock private Collaborator mock; // 1 @BeforeEach public void setUp() { //5.a mock = mock(Collaborator.class); classUnderTest = new ClassTested(); classUnderTest.setListener(mock); }
@Test public void testRemoveNonExistingDocument() { // This call should not lead to any notification // of the Mock Object replay(mock); // 6.b classUnderTest.removeDocument("Does not exist"); }
java.lang.AssertionError: Unexpected method call Collaborator.documentRemoved("Does not exist"):...
@Test public void testRemoveNonExistingDocument2() { mock.documentRemoved("Does not exist"); replay(mock); // 3 classUnderTest.removeDocument("Does not exist"); verify(mock); }
Vous devez réaliser en groupe de 2 étudiants un jeu de quizz dont voici la spécification.
Pour Interroger vous pouvez utiliser:
import javax.swing.JOptionPane; .... String m = JOptionPane.showInputDialog("Anyone there?"); System.out.println(m); // juste pour expliquer ici JOptionPane.showMessageDialog(null, "A oui, il y a quelqu'un");
Rendus au plus tard le lundi 19 novembre à 18h45 sous http://jalon.unice.fr/cours/blay/Cours-blay-20150930110548/BoiteDepot-blay-20181113101132476393?mode_etudiant=true&tab=deposit
Voici le document qui sera utilisé pour l'évaluation (il peut encore changer) : https://goo.gl/forms/PmNPOPcurIKJLlo32