For Installation information please visit: https://docs.microsoft.com/en-us/windows/wsl/install-win10 1.Configure WSL 2 After installation search for %UserProfile% in the local machine. check if there is any .wslconfig file. If there is no .wslconfig file create one with this content depends on the available resource. [wsl2] memory=8GB swap=0 processors=4 Install windows Terminal Application and check if everything is configured properly. 2.Configuring NodeJS on WSL npm install 3.Configuring Git and project To install git, in a wsl terminal, we run sudo apt update && sudo apt upgrade sudo apt install git To set up your Git config file, open a command line for the distribution you're working in and set your name with this command (replacing "Your Name" with your Git username): git config --global user.name "Your Name" Set your email with this command (replacing "youremail@ domain.com " wi...
Before explaining the difference, first this is some testing terminologies Test suite – Consists of one or more test tags. Test tag - Consists of one or more test classes. Test class – Consists of one or more methods. for examble: <suite name="suit1"> <test name="TestTag1"> <classes> <class name="TestClass1"/> </classes> </test> <test name="TestTag2"> <classes> <class name="TestClass2"/> <class name="TestClass3"/> </classes> </test> </suite> @BeforeTest : It will be called Only one time before any test tag, no matter how many test classes inside that tag or how many method annotated with @Test , it will be called only one time for each test tag,in the previous XML example @BeforeTest will be called twice, one time before TestTag1 the second time before TestTag2 so it can be used to in...