assertThat(path.value(), equalTo("/test/src"));
assertTrue(path.isWorkspacePath());
}
@Test public void should_parse_workspace_path_with_null_IProject() {
DirectoryPath path = DirectoryPath.parse("${workspace_loc:/test/src}", null);
assertThat(path.value(), equalTo("/test/src"));
assertTrue(path.isWorkspacePath());
}