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
The current situation is like this: One single test file in client which has all tests in the name of TestLockService.
This is misleading and not package specific.
I propose the following:
lockservice tests: These tests will be the same as the existing ones but they call the lockservice API instead of the lockclient API. Basically all the acquire, release without thinking of a client.
lockclient tests: These tests will be only in the domain of the client and use the client interface functions. No calls to the lockservice will be made like in the current tests and all those will be mocked to return the expected value.
LocKey tests: This is IMO what we already have and maybe can be moved outside the two packages in the root directory with an appropriate name.
The text was updated successfully, but these errors were encountered:
The current situation is like this: One single test file in
client
which has all tests in the name ofTestLockService
.This is misleading and not package specific.
I propose the following:
The text was updated successfully, but these errors were encountered: