public void TestFixtureSetup() { const string path = "simple.css"; _proxy = new StyleProxy (); _proxy.LoadFromFile (path); }
public void Normal_File() { const string path = "simple.css"; Assert.IsTrue (File.Exists(path)); var proxy = new StyleProxy (); proxy.LoadFromFile (path); Assert.IsTrue(proxy.Stylesheet.RuleSets.Any (s1 => s1.Selectors.Any(s => s.SimpleSelectors.Any(ss => ss.ID == "firstId")))); }
public void Non_Existent_File() { const string path = "non_existent_file.css"; Assert.IsFalse (File.Exists (path)); var proxy = new StyleProxy (); Assert.Throws(typeof(FileNotFoundException), () => proxy.LoadFromFile(path)); }