Changed license to LGPLv3 or later.
[svjatoslav_commons.git] / src / test / java / eu / svjatoslav / commons / network / UrlParamEncoderTest.java
1 /*
2  * Svjatoslav Commons - shared library of common functionality.
3  * Copyright ©2012-2014, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
4  * 
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of version 3 of the GNU Lesser General Public License
7  * or later as published by the Free Software Foundation.
8  */
9
10 package eu.svjatoslav.commons.network;
11
12 import org.junit.Before;
13 import org.junit.Test;
14
15 public class UrlParamEncoderTest {
16
17         @Before
18         public void setUp() throws Exception {
19         }
20
21         @Test
22         public void test() {
23                 final String result = UrlParamEncoder.decode("this%20is%20a%20test.");
24                 System.out.println(result);
25         }
26
27 }