📄 urlconvertertest.java
字号:
package com.thoughtworks.xstream.converters.basic;import junit.framework.TestCase;import java.util.Date;import java.net.URL;import java.net.MalformedURLException;import com.thoughtworks.acceptance.AbstractAcceptanceTest;public class URLConverterTest extends AbstractAcceptanceTest { public void testConvertsToSingleString() throws MalformedURLException { assertBothWays( new URL("http://www.apple.com:2020/path/blah.html?abc#2"), "<url>http://www.apple.com:2020/path/blah.html?abc#2</url>"); assertBothWays( new URL("file:/c:/winnt/blah.txt"), "<url>file:/c:/winnt/blah.txt</url>"); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -