public void CheckForSpecifiedPathTest_Return_False() { // Arrange var dataStructure = new DataStructure { Input_address = Guid.NewGuid().ToString() }; var fileSystemController = new FileSystemController(dataStructure); // Act var result = fileSystemController.CheckForSpecifiedPath(); // Assert Assert.IsFalse(result); }