Advertisement
PoulYakov

Untitled

Nov 29th, 2022
650
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.52 KB | None | 0 0
  1. package ru.myitschool.lab210;
  2.  
  3. import static org.junit.Assert.*;
  4. import static org.junit.Assume.assumeTrue;
  5.  
  6. import org.junit.Test;
  7.  
  8. public class RestoreUnitTest {
  9.     @Test
  10.     public void falseAssert() {
  11.         assertEquals(4, 3 + 2);
  12.     }
  13.     @Test
  14.     public void falseAssume() {
  15.         assumeTrue(false);
  16.     }
  17.     @Test
  18.     public void dontCare1() {
  19.     }
  20.     @Test
  21.     public void dontCare2() {
  22.     }
  23.     @Test
  24.     public void dontCare3() {
  25.     }
  26.     @Test
  27.     public void dontCare4() {
  28.     }
  29.  
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement