コード例 #1
0
        public void CompareToTest5()
        {
            IComparable target = new AssemblyInfo(typeof(string).Assembly);

            Assert.Inconclusive();
            object other = null;

            target.CompareTo(other);
            Assert.Inconclusive();
        }
コード例 #2
0
        public void CompareToTest1()
        {
            Assembly     assembly = typeof(string).Assembly;
            AssemblyInfo target   = new AssemblyInfo(assembly, false);

            Assert.Inconclusive();
            AssemblyInfo other = null;

            target.CompareTo(other);
            Assert.Inconclusive();
        }
コード例 #3
0
        public void CompareToTest2()
        {
            AssemblyName assemblyName = typeof(string).Assembly.GetName();
            AssemblyInfo target       = new AssemblyInfo(assemblyName);

            Assert.Inconclusive();
            AssemblyName other = null;

            target.CompareTo(other);
            Assert.Inconclusive();
        }