View Javadoc
1   package org.oxerr.okcoin.rest.dto;
2   
3   import static org.junit.Assert.assertEquals;
4   
5   import java.io.IOException;
6   
7   import org.junit.Test;
8   
9   public class WithdrawalTest extends UnmarshalTest {
10  
11  	@Test
12  	public void testWithdrawal() throws IOException {
13  		Withdrawal withdrawal = readValue("withdraw.json", Withdrawal.class);
14  		assertEquals(301L, withdrawal.getWithdrawId());
15  	}
16  
17  }