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()); }