コード例 #1
0
        public void TestLeaderboards_Good()
        {
            IList l = _bridge.GetLead20(1);

            Assert.AreEqual(11, l.Count);
        }
コード例 #2
0
        public IList GetLead20(int i)
        {
            var s = _real != null?_real.GetLead20(i) : new List <string>();

            return(s);
        }