示例#1
0
        public void TestNamer3()
        {
            var pn = new ProceedingsNamer();
            var t1 = "3rd Euromicro Workshop on Parallel and Distributed Processing (PDP '95), January 25-27, 1995, San Remo, Italy";
            var t2 = pn.Normalise(t1);

            Assert.AreEqual("Proceedings of the 3rd Euromicro Workshop on Parallel and Distributed Processing", t2);
        }
示例#2
0
        public void TestNamer2()
        {
            var pn = new ProceedingsNamer();
            var t1 = "16th Euromicro International Conference on Parallel, Distributed and Network-Based Processing, PDP 2008, 13-15 February 2008, Toulouse, France";
            var t2 = pn.Normalise(t1);

            Assert.AreEqual("Proceedings of the 16th Euromicro International Conference on Parallel, Distributed and Network-Based Processing", t2);
        }