using Microsoft.VisualStudio.TestTools.UnitTesting; using RedmineOracle; using System; namespace UnitTestProject1 { [TestClass] public class UnitTest1 { OracleWork ow; [TestMethod] public void TestMethod2() { ow = new OracleWork(); Assert.AreNotEqual(-1, ow.chechAuth("HELPDESK_SA", "LMN_509ss8")); } [TestMethod] public void TestMethod3() { ow = new OracleWork(); Assert.IsNotNull(ow.findLRP("100100")); } } }