Example #1
0
        public void SyncSubmittingTest()
        {
            // Test that submitting a score works properly
            Score submittedScore = new Score(1, "abc", "xyz");

            lb.SubmitScore(uniqueLevelName, submittedScore);

            // Confirm the top score is the one just submitted
            ScoresResponse r = lb.RequestScores(uniqueLevelName);

            Assert.AreEqual(submittedScore, r.leaders[0]);
        }