You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I reviewed the README file to see if the feature is in the major future work.
I performed a cursory search to see if the feature request is relevant, not redundant, nor in conflict with other tickets.
Is your feature request related to a problem? Please describe.
HS unit testing currently uses a set of stubs for its internal units that are not generated by the tool
Describe the solution you'd like
Use the generated stubs directly whenever possible, as this makes future maintenance easier - when an API changes, just re-run the generator tool to update the stubs.
Additional context
This requires some additional separation of items - global variable stubs should be in a separate compilation unit, as the tool does not generate these.
Requester Info
Joseph Hickey, Vantage Systems, Inc.
The text was updated successfully, but these errors were encountered:
Separate the global variables into separate stub source units, then
re-run the stub generator for all internal APIs. The committed result
here is the exact output of the tool, unmodified.
This eases future maintainence, when an internal API changes one just
needs to re-run the stub generator tool to update it.
Checklist (Please check before submitting)
Is your feature request related to a problem? Please describe.
HS unit testing currently uses a set of stubs for its internal units that are not generated by the tool
Describe the solution you'd like
Use the generated stubs directly whenever possible, as this makes future maintenance easier - when an API changes, just re-run the generator tool to update the stubs.
Additional context
This requires some additional separation of items - global variable stubs should be in a separate compilation unit, as the tool does not generate these.
Requester Info
Joseph Hickey, Vantage Systems, Inc.
The text was updated successfully, but these errors were encountered: