Beispiel #1
0
    public void GetBaseUrlTest()
    {
        // テストデータ作成
        string   fileName = "test.txt";
        NCMBFile file     = new NCMBFile(fileName);

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

        Assert.AreEqual("http://localhost:3000/2013-09-01/files/test.txt", method.Invoke(file, null).ToString());
    }