Advertisement
Guest User

Untitled

a guest
Feb 5th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.34 KB | None | 0 0
  1. package work.iban;
  2.  
  3. import org.junit.Test;
  4. import static org.junit.Assert.*;
  5.  
  6. public class IBANDruckTest {
  7.     @Test
  8.     public void testGetIbanDruck() {
  9.         String excepted = "DE90 7625 0000 0040 4440 28";
  10.         String actual = IBANDruck.getIbanDruck("DE90762500000040444028");
  11.  
  12.         assertEquals(excepted, actual);
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement