is there an easy way to compare a set of system requirements and compare them with a set of recommended requirements?
I want to find out through code if the requirements are met.
Printable View
is there an easy way to compare a set of system requirements and compare them with a set of recommended requirements?
I want to find out through code if the requirements are met.
Yes, it's called Functional Testing. There are two main types - Unit testing which tests the individual methods of an application, and Integration testing which runs the entire system and tests things with database access and services and whatever else enabled. Look into JUnit.