-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MNT New tests classes to test version tags #160
MNT New tests classes to test version tags #160
Conversation
c97af87
to
59ebc1d
Compare
59ebc1d
to
9053227
Compare
|
||
class NonVersionedParentObject extends DataObject | ||
{ | ||
private static $table_name = 'NonVersionedParentObject'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
private static $table_name = 'NonVersionedParentObject'; | |
private static $table_name = 'FrameworkTest_NonVersionedParentObject'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated
|
||
class NonVersionedChildObject extends DataObject | ||
{ | ||
private static $table_name = 'NonVersionedChildObject'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
private static $table_name = 'NonVersionedChildObject'; | |
private static $table_name = 'FrameworkTest_NonVersionedChildObject'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated
|
||
class VersionedChildObject extends DataObject | ||
{ | ||
private static $table_name = 'VersionedChildObject'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
private static $table_name = 'VersionedChildObject'; | |
private static $table_name = 'FrameworkTest_VersionedChildObject'; |
*/ | ||
class TestPageVersionedObject extends Page implements \TestPageInterface | ||
{ | ||
private static $table_name = 'FrameworkTestPage_VersionedObject'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
private static $table_name = 'FrameworkTestPage_VersionedObject'; | |
private static $table_name = 'FrameworkTest_VersionedObject'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated
|
||
class VersionedParentObject extends DataObject | ||
{ | ||
private static $table_name = 'VersionedParentObject'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
private static $table_name = 'VersionedParentObject'; | |
private static $table_name = 'FrameworkTest_VersionedParentObject'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated
/** | ||
* Parent class of all test pages | ||
*/ | ||
class TestPageVersionedObject extends Page implements \TestPageInterface |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
class TestPageVersionedObject extends Page implements \TestPageInterface | |
class TestPageVersionedObject extends Page implements TestPageInterface |
And add use TestPageInterface;
above
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated
9053227
to
f6aa59d
Compare
f6aa59d
to
f9bf950
Compare
Closing - we can reference this PR if we decide to go forward with this work in the future, pending the spike. |
Description
Additional classes for creating objects for testing recursive checking of changes in child classes.
Parent issue