Ejemplo n.º 1
0
        public void ToString_Test()
        {
            PDFNull target   = PDFNull.Value;
            string  expected = PDFNull.NullString;
            string  actual;

            actual = target.ToString();
            Assert.AreEqual(expected, actual);
        }
Ejemplo n.º 2
0
        public void Type_Test()
        {
            PDFNull       target   = PDFNull.Value;
            PDFObjectType expected = PDFObjectTypes.Null;
            PDFObjectType actual;

            actual = target.Type;
            Assert.AreEqual(expected, actual);
        }
Ejemplo n.º 3
0
        public void GetHashCode_Test()
        {
            PDFNull target  = PDFNull.Value;
            PDFNull another = PDFNull.Value;

            int expected = target.GetHashCode();
            int actual;

            actual = target.GetHashCode();
            Assert.AreEqual(expected, actual);
        }
Ejemplo n.º 4
0
        public void Equals_Test()
        {
            PDFNull target = PDFNull.Value;

            object obj      = PDFNull.Value;
            bool   expected = true;
            bool   actual;

            actual = target.Equals(obj);
            Assert.AreEqual(expected, actual);

            obj      = null;
            expected = false;
            actual   = target.Equals(obj);
            Assert.AreEqual(expected, actual);

            obj      = new object();
            expected = false;
            actual   = target.Equals(obj);
            Assert.AreEqual(expected, actual);
        }