LoadFromFile() 공개 메소드

public LoadFromFile ( string path ) : void
path string
리턴 void
예제 #1
0
            public void TestFixtureSetup()
            {
                const string path = "simple.css";

                _proxy = new StyleProxy ();
                _proxy.LoadFromFile (path);
            }
예제 #2
0
            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"))));
            }
예제 #3
0
            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));
            }