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
A common need is to define proxy/mock in the same file where the unit test class lives,
If the proxy was written before the unit test class, then the following error will be thrown
!ERROR=252 (No match for method ::C:/Users/habof/AppData/Local/Temp/BBjUnitTest
1583140459530/BBjGridExWidgetCellEditorAGPopupSelectTest.bbjt::BBjGridExWidgetCe
llEditorAGPopupSelectProxy.setUp())
[15] call "C:\Users\habof\AppData\Local\Temp\BBjUnitTest1583140459530\BBjGridExW
idgetCellEditorAGPopupSelectTest.bbjt"
moving the proxy to be defined at the end of the file solves the problem, but it would a nice feature if we can just introduce a new annotation (ex : @UnitTest) to mark a class as a unit test
The text was updated successfully, but these errors were encountered:
hyyan
changed the title
Introduce new annotation to mark unti test classes
[Feature Request] Introduce new annotation to mark unti test classes
Mar 2, 2020
A common need is to define proxy/mock in the same file where the unit test class lives,
If the proxy was written before the unit test class, then the following error will be thrown
moving the proxy to be defined at the end of the file solves the problem, but it would a nice feature if we can just introduce a new annotation (ex :
@UnitTest
) to mark a class as a unit testThe text was updated successfully, but these errors were encountered: