示例#1
0
        public void ReadFileData_NotExistFile_ReturnNull()
        {
            _expectedString = "[]";
            _path           = "player.json";
            var actual = _target.ReadFileData(_path);

            Assert.AreEqual(_expectedString, actual);
        }