コード例 #1
0
ファイル: UnitTest1.cs プロジェクト: Wezzydw/CompulsorySDM
        public void CountMovieReview()
        {
            Rating testRating     = new Rating();
            int    number         = testRating.CountMovieReview(1);
            int    expectedResult = 4;

            Assert.AreEqual(number, expectedResult);
        }
コード例 #2
0
ファイル: UnitTest1.cs プロジェクト: Wezzydw/CompulsorySDM
        public void TestMethod4()
        {
            Rating    testRating = new Rating();
            Stopwatch s          = new Stopwatch();

            s.Start();
            testRating.CountMovieReview(1);
            s.Stop();
            Assert.IsTrue(s.ElapsedMilliseconds / 1000.0 < 1.0);
        }
コード例 #3
0
ファイル: UnitTest1.cs プロジェクト: Wezzydw/CompulsorySDM
 public void CountMovieReviewException()
 {
     Rating testRating = new Rating();
     int    number     = testRating.CountMovieReview(0);
 }