コード例 #1
0
ファイル: NCMBRoleTest.cs プロジェクト: n0guch1/ncmb_unity
    public void GetBaseUrlTest()
    {
        // テストデータ作成
        NCMBRole expertPlanRole = new NCMBRole("expertPlan");

        // internal methodの呼び出し
        MethodInfo method = expertPlanRole.GetType().GetMethod("_getBaseUrl", BindingFlags.NonPublic | BindingFlags.Instance);

        Assert.AreEqual("http://localhost:3000/2013-09-01/roles", method.Invoke(expertPlanRole, null).ToString());
    }