コード例 #1
0
ファイル: ApiLimitTest.cs プロジェクト: tsubasa/OpenTween
        public void EqualsTest(object obj2, bool expected)
        {
            var obj1 = new ApiLimit(150, 100, new DateTimeUtc(2013, 1, 1, 0, 0, 0));

            Assert.Equal(expected, obj1.Equals(obj2));
        }
コード例 #2
0
ファイル: ApiLimitTest.cs プロジェクト: rhenium/OpenTween
        public void EqualsTest(object obj2, bool expect)
        {
            var obj1 = new ApiLimit(150, 100, new DateTime(2013, 1, 1, 0, 0, 0));

            Assert.That(obj1.Equals(obj2), Is.EqualTo(expect));
        }
コード例 #3
0
        public void EqualsTest(object obj2, bool expect)
        {
            var obj1 = new ApiLimit(150, 100, new DateTime(2013, 1, 1, 0, 0, 0));

            Assert.That(obj1.Equals(obj2), Is.EqualTo(expect));
        }
コード例 #4
0
ファイル: ApiLimitTest.cs プロジェクト: egcube/OpenTween
        public void EqualsTest(object obj2, bool expected)
        {
            var obj1 = new ApiLimit(150, 100, new DateTime(2013, 1, 1, 0, 0, 0));

            Assert.Equal(expected, obj1.Equals(obj2));
        }