Reference data while testing - interesting

2023-10-05 Thread Mike Dewhirst
I have an interesting testing problem which requires someone smarter than me. I want to prove correctness of multiple outcomes from multiple regulatory computations based on, among other things, international lists of assessed chemicals and their hazards. Hazards include both human health

Re: Reference data while testing

2023-10-03 Thread Mike Dewhirst
Thank you but unfortunately, none of the suggestions are appropriate. Here is more information. We have a complex system where - in the opinion of a chemical expert - it is possible to state that a particular chemical risk profile has been correctly calculated by the software. In addition

Re: Reference data while testing

2023-10-03 Thread Qayyam Hussain
Sure I'll what how much you pay me? On Tue, Oct 3, 2023, 7:31 AM Mike Dewhirst wrote: > > This is probably in the docs so please drop me a link if you can. > > My project has fifteen or more tables of reference data which determine > how the software behaves and therefore is critical to unit

Re: Reference data while testing

2023-10-03 Thread Alessandro Madruga Correia
On Mon, Oct 2, 2023 at 11:30 PM Mike Dewhirst wrote: > > This is probably in the docs so please drop me a link if you can. > > My project has fifteen or more tables of reference data which determine > how the software behaves and therefore is critical to unit testing. > > Fixtures are unworkable

Re: Reference data while testing

2023-10-03 Thread herve bineli
Hi Mike, I will suggest you use a database framework like SQLAlchemy to access your tables' data with read-only queries. Then you use the data queried to set your test cases using a testing library like Pytest. Do let know if you have other concerns with this approach. Best Regards, BINELI

Re: Reference data while testing

2023-10-02 Thread Jun Say
Thank you for your email. https://hahaha0505.netlify.app/ If you have any questions, please share with me. Thank you. On Tue, Oct 3, 2023 at 10:30 AM Mike Dewhirst wrote: > > This is probably in the docs so please drop me a link if you can. > > My project has fifteen or more tables of

Reference data while testing

2023-10-02 Thread Mike Dewhirst
This is probably in the docs so please drop me a link if you can.My project has fifteen or more tables of reference data which determine how the software behaves and therefore is critical to unit testing.Fixtures are unworkable and I  need to respond to the actual reference data.How can i do