oneRain 2020-05-07 10:56:45 +08:00
parent cc73b21673
commit a4eb9dfa0c
5 changed files with 31 additions and 1 deletions

View File

@ -334,7 +334,9 @@ namespace Storage.Test {
Assert.Greater(hellos.Count, 0);
foreach (LCObject item in hellos) {
LCObject world = item["objectValue"] as LCObject;
Assert.IsTrue(world == null || world["content"] != "7788");
Assert.IsTrue(world == null ||
world["content"] == null ||
world["content"] as string != "7788");
}
}
}

View File

@ -0,0 +1,7 @@
using System;
namespace LeanCloud.Storage.Leaderboard {
public class LCLeaderboard {
public LCLeaderboard() {
}
}
}

View File

@ -0,0 +1,7 @@
using System;
namespace LeanCloud.Storage.Leaderboard {
public class LCLeaderboardArchive {
public LCLeaderboardArchive() {
}
}
}

View File

@ -0,0 +1,7 @@
using System;
namespace LeanCloud.Storage.Leaderboard {
public class LCRanking {
public LCRanking() {
}
}
}

View File

@ -0,0 +1,7 @@
using System;
namespace LeanCloud.Storage.Leaderboard {
public class LCStatistic {
public LCStatistic() {
}
}
}