Example #1
0
    public void ReportResult()
    {
        Level level = new Level {
            LevelIndex = 1
        };
        var score = 1000;

        var success = toplist.ReportResult(level, score);

        Assert.AreEqual(success, true);
    }
Example #2
0
 public void ReportScore(int score)
 {
     provider.ReportResult(current, score);
 }