First, check the version of your chrome and download chromedriver accordingly
Then while creating test cases give the path to that chrome driver like this
System.setProperty("webdriver.chrome.driver", "/path/to/chromedriver");
WebDriver driver = new ChromeDriver();
Thus, you can run Selenium WebDriver test cases in Chrome.