Write a function that should count word occurance in file.
- Define function 'countWord' which will accept two arguments, filepath and word to find inside file.
- You can create your own file or you can use given testfile.txt inside files directory.
- Calculate word occurance. Function should return count.
- Function should pass all test cases.