17 lines
431 B
C#
17 lines
431 B
C#
using NUnit.Framework;
|
|
using LeanCloud;
|
|
|
|
namespace Storage.Test {
|
|
public class ExceptionTest : BaseTest {
|
|
[Test]
|
|
public void LeanCloudException() {
|
|
try {
|
|
throw new LCException(123, "hello, world");
|
|
} catch (LCException e) {
|
|
TestContext.WriteLine($"{e.Code} : {e.Message}");
|
|
Assert.AreEqual(e.Code, 123);
|
|
}
|
|
}
|
|
}
|
|
}
|