Ejemplo n.º 1
0
        public void TestGetPathTreePass(string propertyPath, string path)
        {
            var property = scriptableObject.FindProperty(propertyPath);
            var pathTree = PropertyUtility.GetPropertyFieldTree(property);
            var actual   = string.Join(".", pathTree);

            Assert.AreEqual(path, actual);
        }