Advertisement
alexarcan

SEF_Whitebox

May 12th, 2015
460
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.90 KB | None | 0 0
  1. package utilities;
  2.  
  3. import junit.framework.Assert;
  4. import junit.framework.TestCase;
  5.  
  6.  
  7. public class Seftesting extends TestCase{
  8.  
  9.     public void testMaxValid() {
  10.         int tab[]={0,1,4,10,55,23};
  11.         int res = Max.max(tab);
  12.         Assert.assertEquals(55, res);
  13.     }
  14.  
  15.     public void testMaxInValid() {
  16.         int tab[]={};
  17.         try{
  18.             int res = Max.max(tab);
  19.             Assert.fail();
  20.         }catch(NotExist e){
  21.             Assert.assertTrue(true);
  22.         }catch(Exception e){
  23.             Assert.fail();
  24.         }
  25.     }
  26.    
  27.     public void testMaxInValid2() {
  28.         int tab[]=null;
  29.         try{
  30.             int res = Max.max(tab);
  31.             Assert.fail();
  32.         }catch(NotExist e){
  33.             Assert.assertTrue(true);
  34.         }
  35. }
  36.     public void testMaxLength1() {
  37.         int tab[]={1};
  38.         int res = Max.max(tab);//peste tot trb sa invoc metoda
  39.         Assert.assertEquals(1, res);
  40. }
  41.    
  42.     public void testMaxIf() {
  43.         int tab[]={11,5,6,1,3};
  44.         int max = Max.max(tab);
  45.         Assert.assertEquals(11, max);
  46. }
  47.    
  48.    
  49.    
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement