Test setup doesn't seem to execute in the proper order. #1253
-
According to the docs here, setup methods are executed bottom-up (base classes, then inheriting). However, that doesn't seem to be the case. It instead seems to be alphabetical(?). And within the same class, it seems to follow the method order rather than using the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Ah only instance methods will execute bottom up. Static ones aren't constrained to an object/inheritance and so those must be manually ordered. But yes, the ordering via the Order property has been knocked out so I'll sort that! |
Beta Was this translation helpful? Give feedback.
Ah only instance methods will execute bottom up.
Static ones aren't constrained to an object/inheritance and so those must be manually ordered.
But yes, the ordering via the Order property has been knocked out so I'll sort that!