10101011101210131014101510161017
} @Test public void testGrammarToURIString001() throws Exception { String s = "url(foo)"; CssURI cu = new CssURI(s, MOCK_LOCATION); assertEquals("foo", cu.toUriString()); }
10171018101910201021102210231024
} @Test public void testGrammarToURIString002() throws Exception { String s = "url('foo')"; CssURI cu = new CssURI(s, MOCK_LOCATION); assertEquals("foo", cu.toUriString()); }
10241025102610271028102910301031
} @Test public void testGrammarToURIString003() throws Exception { String s = "url(\"foo\")"; CssURI cu = new CssURI(s, MOCK_LOCATION); assertEquals("foo", cu.toUriString()); }
10311032103310341035103610371038
} @Test public void testGrammarToURIString004() throws Exception { String s = "url( \"foo\" )"; CssURI cu = new CssURI(s, MOCK_LOCATION); assertEquals("foo", cu.toUriString()); }
10381039104010411042104310441045
} @Test public void testGrammarToURIString005() throws Exception { String s = "url( \'foo\' )"; CssURI cu = new CssURI(s, MOCK_LOCATION); assertEquals("foo", cu.toUriString()); }
10451046104710481049105010511052
} @Test public void testGrammarToURIString006() throws Exception { String s = "url( \"f o o\" )"; CssURI cu = new CssURI(s, MOCK_LOCATION); assertEquals("f o o", cu.toUriString()); }
10521053105410551056105710581059
} @Test public void testGrammarToURIString007() throws Exception { String s = "url( \" f o o \" )"; CssURI cu = new CssURI(s, MOCK_LOCATION); assertEquals("f o o", cu.toUriString()); }
10591060106110621063106410651066
} @Test public void testGrammarToURIString008() throws Exception { String s = "url()"; CssURI cu = new CssURI(s, MOCK_LOCATION); assertEquals("", cu.toUriString()); }
10661067106810691070107110721073
} @Test public void testGrammarToURIString009() throws Exception { String s = "url('')"; CssURI cu = new CssURI(s, MOCK_LOCATION); assertEquals("", cu.toUriString()); }
10731074107510761077107810791080
} @Test public void testGrammarToURIString010() throws Exception { String s = "url( ' ' )"; CssURI cu = new CssURI(s, MOCK_LOCATION); assertEquals("", cu.toUriString()); }