1public static XPathNavigator GetTestXmlNavigatorConfig(string testXmlFile)
2{
3 XmlDocument doc = new XmlDocument();
4 doc.Load(Assembly.GetExecutingAssembly().GetManifestResourceStream(
5 string.Concat("TestAsseblyNamespaceHere.", mockXmlFile)));
6 return doc.CreateNavigator();
7}