コード例 #1
0
        public void GetAssemblyDirectoryTest()
        {
            string expected = string.Empty; // TODO: Initialize to an appropriate value
            string actual;

            actual = BonCodeAJP13Logger.GetAssemblyDirectory();
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
コード例 #2
0
 /// <summary>
 /// Get path in which the properties XML file should be located. This is where the .dll is located itself.
 /// </summary>
 public virtual string GetAppSettingsPath()
 {
     //Used to determine where to store the settings
     return(BonCodeAJP13Logger.GetAssemblyDirectory());
 }
コード例 #3
0
 /// <summary>
 /// Get path in which the properties XML file should be located. This is where the .dll is located itself.
 /// If dll is in GAC this will switch to windows\system32 dir
 /// </summary>
 public virtual string GetAppSettingsPath()
 {
     return(BonCodeAJP13Logger.GetAssemblyDirectory());
 }