-
Notifications
You must be signed in to change notification settings - Fork 85
Project Layout
##Project Structure
###Description Below is the structure of the basic Quantum project found in Git. The main folders and files of interest are:
> resources folder - folder that contains the [application.properties](The application.properties file) file and the [Object Repository](Object Repository) files.
> src folder - this folder has two main sub-folders, main and test. You should concentrate efforts in the test folder.
> features folder in test/java/com.perfectomobile/quantum is where your BDD tests are stored.
> java.tests folder in test/java/com.perfectomobile/quantum is where your [Java tests](https://github.com/PerfectoCode/Quantum/wiki/java Implementation) are stored.
> config folder in test/resources is where the testNG files are located.
> data folder in test/resources is where your data files reside, for data-driven tests. Data files may be in one of the following formats: Excel csv or xls, json, or xml.
###Structure as shown in IntelliJ

-
Configuration and setup
-
BDD
-
Java