Online Forums
Technical support is provided through Support Forums below. Anybody can view them; you need to Register/Login to our site (see links in upper right corner) in order to Post questions. You do not have to be a licensed user of our product.
Please read Rules for forum posts before reporting your issue or asking a question. OPC Labs team is actively monitoring the forums, and replies as soon as possible. Various technical information can also be found in our Knowledge Base. For your convenience, we have also assembled a Frequently Asked Questions page.
Do not use the Contact page for technical issues.
unit tests - nunit (good practice)
The DAClientMApper is not considered an owner of it and therefore does not dispose of it, because its purpose is to allow developers to set a client object from outside, and its usages can be shared. If we have disposed it we could spoil its other intended usage(s).
Best regards
Please Log in or Create an account to join the conversation.
- miron
-
Topic Author
- Visitor
-
and these two object I am disposing:
Please Log in or Create an account to join the conversation.
But I know you have reported the issue before I have explained how it is supposed to work. Therefore it is possible that in your test, you were calling Dispose() but it was not the last undisposed EasyXXClient object around. Can you please comment on that?
Please Log in or Create an account to join the conversation.
Best regards
Please Log in or Create an account to join the conversation.
- miron
-
Topic Author
- Visitor
-
Yes, I aware that EasyXXClient is lightway access to OPC.
And internal engine is managed by QuickOPC.
That means question is like:
How to stop internal engine? Or event how to start. (Main mechanism).
Probably engine is starting during first access to OPC.
This control would be necessary not only in unit testing,
but in some application (windows services) which need to reload configuration.
Please Log in or Create an account to join the conversation.
Note that the whole architecture is based on a common "engine", shared by the EasyXXClient objects. For this to work, individual EasyXXClient disposals do not mean much. The disposal of the last outstanding EasyXXClient object, however, should release the resources taken so far. This said, I need to reproduce the problem and decide which situation we are dealing with.
Best regards
Please Log in or Create an account to join the conversation.
- miron
-
Topic Author
- Visitor
-
And I see that nunit need to terminate threads.
I could execute tests step by step but I have problem with executing whole tests at one time.
Please Log in or Create an account to join the conversation.
- miron
-
Topic Author
- Visitor
-
What is good practice to use QuickOPC in unit tests.
It looks that test with quickOPC ends later (it hungs on some threads maybe).
In unit test I am using EasyClient and also mapping with subscription.
What I should do after executing tests? Disopse is enough?
What about connection opc and threads which was created in background by QuickOPC?
Thank you.
Please Log in or Create an account to join the conversation.