Ejemplo n.º 1
0
        public void Equals_ObjectSelf_ReturnsTrue()
        {
            var queryPart = new TopQueryPart();
            object other = queryPart;

            var actual = queryPart.Equals(other);

            Assert.That(actual, Is.True);
        }
Ejemplo n.º 2
0
        public void Equals_ObjectNull_ReturnsFalse()
        {
            var queryPart = new TopQueryPart();
            object other = null;

            var actual = queryPart.Equals(other);

            Assert.That(actual, Is.False);
        }
Ejemplo n.º 3
0
        public void Equals_ObjectOfDifferentType_ReturnsFalse()
        {
            var queryPart = new TopQueryPart();
            object other = String.Empty;

            var actual = queryPart.Equals(other);

            Assert.That(actual, Is.False);
        }
Ejemplo n.º 4
0
        public void Equals_AnotherDifferentTopQueryPart_ReturnsFalse()
        {
            var queryPart = new TopQueryPart();
            var other = new TopQueryPart(3);

            var actual = queryPart.Equals(other);

            Assert.That(actual, Is.False);
        }
Ejemplo n.º 5
0
        public void Equals_ObjectAnotherEquivalentTopQueryPart_ReturnsTrue()
        {
            var queryPart = new TopQueryPart();
            object other = new TopQueryPart();

            var actual = queryPart.Equals(other);

            Assert.That(actual, Is.True);
        }
Ejemplo n.º 6
0
        public void Equals_ObjectAnotherEquivalentTopQueryPart_ReturnsTrue()
        {
            var    queryPart = new TopQueryPart();
            object other     = new TopQueryPart();

            var actual = queryPart.Equals(other);

            Assert.That(actual, Is.True);
        }
Ejemplo n.º 7
0
        public void Equals_AnotherDifferentTopQueryPart_ReturnsFalse()
        {
            var queryPart = new TopQueryPart();
            var other     = new TopQueryPart(3);

            var actual = queryPart.Equals(other);

            Assert.That(actual, Is.False);
        }
Ejemplo n.º 8
0
        public void Equals_Self_ReturnsTrue()
        {
            var queryPart = new TopQueryPart();
            var other     = queryPart;

            var actual = queryPart.Equals(other);

            Assert.That(actual, Is.True);
        }
Ejemplo n.º 9
0
        public void Equals_ObjectOfDifferentType_ReturnsFalse()
        {
            var    queryPart = new TopQueryPart();
            object other     = String.Empty;

            var actual = queryPart.Equals(other);

            Assert.That(actual, Is.False);
        }
Ejemplo n.º 10
0
        public void Equals_TopQueryPartNull_ReturnsFalse()
        {
            var          queryPart = new TopQueryPart();
            TopQueryPart other     = null;

            var actual = queryPart.Equals(other);

            Assert.That(actual, Is.False);
        }