I have a user object with property 1, property 2, and property 3. I have a separate function to edit each property. Therefore, I'll need to test each edit property function. So I'll create 3 different expected datasets for the tests of successful property edits. However, what if I end up adding a 4th property down the line? Won't this force me to now add this property/value to all of the other datasets? Should I just create 1 template dataset file, and then extract the data from the file and use a php array dataset? This way, if I add a new property, I won't have to modify all of the previous datasets?
Concrete example:
Let's say I want to test that my edit email function works properly, and only changes the email. My setup fixture would be:
setup-fixture.xml:
<dataset>
<table name="users">
<column>id</column>
<column>email</column>
<column>password</column>
<row>
<value>1</value>
<value>user1@email.com</value>
<value>password</value>
</row>
</table>
</dataset>
And my expected dataset would be:
edit-email-expected-dataset.xml:
<dataset>
<table name="users">
<column>id</column>
<column>email</column>
<column>password</column>
<row>
<value>1</value>
<value>user1-changed-his-email@email.com</value>
<value>password</value>
</row>
</table>
</dataset>
However, if I later added another property called "notes" to this user object, my setup fixture would now be: new-setup-fixture.xml:
<dataset>
<table name="users">
<column>id</column>
<column>email</column>
<column>password</column>
<column>notes</column>
<row>
<value>1</value>
<value>user1@email.com</value>
<value>password</value>
<value>notes</value>
</row>
</table>
</dataset>
Therefore, I would also have to amend my expected dataset file in the edit e-mail function test to include this new "notes" property.
edit-email-expected-dataset.xml:
<dataset>
<table name="users">
<column>id</column>
<column>email</column>
<column>password</column>
<column>notes</column>
<row>
<value>1</value>
<value>user1-changed-his-email@email.com</value>
<value>password</value>
<value>notes</value>
</row>
</table>
</dataset>
My question is, how do I avoid having to edit all my expected datasets everytime I add an extra field?