Advertisement
Guest User

Untitled

a guest
Mar 18th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. @Test
  2. public void testBMIYaroObese(){
  3.  
  4. Person Yaro = new Person("Yaroslav",1.82,130);
  5.  
  6. assertTrue(Yaro.BMIClassification() == "Fat fuck");
  7. }
  8.  
  9. @Test
  10. public void testBMIKurtTwink(){
  11.  
  12. Person Kurt = new Person("Kurt", 1.50, 55);
  13.  
  14. assertTrue(Kurt.BMIClassification() == "Twinklet spotted");
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement