chore
parent
cc73b21673
commit
a4eb9dfa0c
|
@ -334,7 +334,9 @@ namespace Storage.Test {
|
||||||
Assert.Greater(hellos.Count, 0);
|
Assert.Greater(hellos.Count, 0);
|
||||||
foreach (LCObject item in hellos) {
|
foreach (LCObject item in hellos) {
|
||||||
LCObject world = item["objectValue"] as LCObject;
|
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");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
using System;
|
||||||
|
namespace LeanCloud.Storage.Leaderboard {
|
||||||
|
public class LCLeaderboard {
|
||||||
|
public LCLeaderboard() {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,7 @@
|
||||||
|
using System;
|
||||||
|
namespace LeanCloud.Storage.Leaderboard {
|
||||||
|
public class LCLeaderboardArchive {
|
||||||
|
public LCLeaderboardArchive() {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,7 @@
|
||||||
|
using System;
|
||||||
|
namespace LeanCloud.Storage.Leaderboard {
|
||||||
|
public class LCRanking {
|
||||||
|
public LCRanking() {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,7 @@
|
||||||
|
using System;
|
||||||
|
namespace LeanCloud.Storage.Leaderboard {
|
||||||
|
public class LCStatistic {
|
||||||
|
public LCStatistic() {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue