Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 10th, 2012  |  syntax: None  |  size: 2.81 KB  |  hits: 107  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. est ce que la classe de test utilisateur aurai une telle structure ??
  2.  
  3.  
  4. ////////////////////////////////////////////////////////////////////
  5.  
  6.  
  7.  
  8. /**
  9.  *
  10.  */
  11. package l3.info.ProjetTests;
  12.  
  13. import static org.junit.Assert.*;
  14.  
  15. import org.junit.After;
  16. import org.junit.Before;
  17. import org.junit.Test;
  18.  
  19. /**
  20.  * @author acer
  21.  *
  22.  */
  23. public class userTest {
  24.  
  25.     /**
  26.      * @throws java.lang.Exception
  27.      */
  28.     @Before
  29.     public void setUp() throws Exception {
  30.     }
  31.  
  32.     /**
  33.      * @throws java.lang.Exception
  34.      */
  35.     @After
  36.     public void tearDown() throws Exception {
  37.     }
  38.  
  39.     /**
  40.      * Test method for {@link l3.info.Projet.Client.Utilisateur#Utilisateur(int, java.lang.String, java.lang.String, java.util.Map, java.util.List)}.
  41.      */
  42.     @Test
  43.     public void testUtilisateur() {
  44.         fail("Not yet implemented");
  45.     }
  46.  
  47.     /**
  48.      * Test method for {@link l3.info.Projet.Client.Utilisateur#getId()}.
  49.      */
  50.     @Test
  51.     public void testGetId() {
  52.         fail("Not yet implemented");
  53.     }
  54.  
  55.     /**
  56.      * Test method for {@link l3.info.Projet.Client.Utilisateur#getMdp()}.
  57.      */
  58.     @Test
  59.     public void testGetMdp() {
  60.         fail("Not yet implemented");
  61.     }
  62.  
  63.     /**
  64.      * Test method for {@link l3.info.Projet.Client.Utilisateur#setPseudo(java.lang.String)}.
  65.      */
  66.     @Test
  67.     public void testSetPseudo() {
  68.         fail("Not yet implemented");
  69.     }
  70.  
  71.     /**
  72.      * Test method for {@link l3.info.Projet.Client.Utilisateur#getPseudo()}.
  73.      */
  74.     @Test
  75.     public void testGetPseudo() {
  76.         fail("Not yet implemented");
  77.     }
  78.  
  79.     /**
  80.      * Test method for {@link l3.info.Projet.Client.Utilisateur#setUtilisateurSuivi(java.util.Map)}.
  81.      */
  82.     @Test
  83.     public void testSetUtilisateurSuivi() {
  84.         fail("Not yet implemented");
  85.     }
  86.  
  87.     /**
  88.      * Test method for {@link l3.info.Projet.Client.Utilisateur#getUtilisateurSuivi()}.
  89.      */
  90.     @Test
  91.     public void testGetUtilisateurSuivi() {
  92.         fail("Not yet implemented");
  93.     }
  94.  
  95.     /**
  96.      * Test method for {@link l3.info.Projet.Client.Utilisateur#setMessages(java.util.List)}.
  97.      */
  98.     @Test
  99.     public void testSetMessages() {
  100.         fail("Not yet implemented");
  101.     }
  102.  
  103.     /**
  104.      * Test method for {@link l3.info.Projet.Client.Utilisateur#getMessages()}.
  105.      */
  106.     @Test
  107.     public void testGetMessages() {
  108.         fail("Not yet implemented");
  109.     }
  110.  
  111.     /**
  112.      * Test method for {@link l3.info.Projet.Client.Utilisateur#setConnexion(boolean)}.
  113.      */
  114.     @Test
  115.     public void testSetConnexion() {
  116.         fail("Not yet implemented");
  117.     }
  118.  
  119.     /**
  120.      * Test method for {@link l3.info.Projet.Client.Utilisateur#getConnexion()}.
  121.      */
  122.     @Test
  123.     public void testGetConnexion() {
  124.         fail("Not yet implemented");
  125.     }
  126.  
  127. }