Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.stravovani.stravovani;
- import com.stravovani.stravovani.Service.CardService;
- import org.junit.Before;
- import org.junit.Test;
- import org.springframework.beans.factory.annotation.Autowired;
- import static org.junit.Assert.*;
- public class ConvertToDBformatTest {
- @Autowired
- private CardService cardService;
- @Before
- public void setUp() {
- cardService = new CardService();
- }
- @Test
- public void testCard() throws Exception {
- String actual = cardService.convertToDBformat(",00004502540214");
- String expected = "0061812694";
- assertEquals(expected, actual);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment