@@ -2,29 +2,15 @@ namespace AngleSharp.Performance.Css
22{
33 using System ;
44 using System . Collections . Generic ;
5+ using System . IO ;
56
67 class Program
78 {
89 static void Main ( String [ ] args )
910 {
10- var stylesheets = new UrlTests (
11- extension : ".css" ,
12- withBuffer : true ) ;
13-
14- stylesheets . Include (
15- "http://www.csszengarden.com/215/215.css?v=8may2013" ,
16- "http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" ,
17- "http://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.4/jquery-ui.css" ,
18- "http://www.florian-rappl.de/Content/style?v=o2O40dFmfq2JG0tQyfQctozyaA9IcUQxq9b6x16JOKw1" ,
19- "http://z-ecx.images-amazon.com/images/G/01/AUIClients/AmazonUI-a607978b4c59f6c52279818077903ce9a01d14e2.rendering_engine-not-trident.min._V2_.css" ,
20- "http://assets-cdn.github.com/assets/github2/index-0d569068eabc0305b93b246950eb913fc9d2948b952824895172164835b351dd.css" ,
21- "http://codeproject.cachefly.net/App_Themes/CodeProject/Css/Main.min.css?dt=2.8.150616.1" ,
22- "http://cdn.sstatic.net/stackoverflow/all.css?v=5a386bc7d85d" ,
23- "http://fbstatic-a.akamaihd.net/rsrc.php/v2/yX/r/fr81HMP3WaY.css" ,
24- "https://s.yimg.com/zz/combo?/os/stencil/3.1.0/styles-ltr.css&/os/fp/atomic-css.2c9008c2.css" ,
25- "http://static.licdn.com/sc/h/59ugqor0mlj9qjt7ohmi1kpko,cy00fqioblh011agl8l3n36sc" ,
26- "http://style.aliunicorn.com/css/6v/??apollo/core/core-ws-responsive.css,run/wholesale/font-v1.css,run/site/en/common/header/header-v150213.css,run/site/en/common/bottombar/bottom-bar.css?t=145f12b3e_104c763f9a" ,
27- "http://www.florian-rappl.de/Content/style?v=o2O40dFmfq2JG0tQyfQctozyaA9IcUQxq9b6x16JOKw1" ) . Wait ( ) ;
11+ var samplesDir = Path . Combine ( AppContext . BaseDirectory , "Samples" ) ;
12+ var stylesheets = new FileTests ( )
13+ . IncludeFromDirectory ( samplesDir ) ;
2814
2915 var parsers = new List < ITestee >
3016 {
0 commit comments