ExpressionStatement statement = (ExpressionStatement) program
.statements().get(0);
Include include = (Include) statement.getExpression();
IBinding sourceBinding = include.resolveBinding();
Assert.assertTrue(sourceBinding.getName().equals("myFile.php") == true);
Assert.assertTrue(sourceBinding.getPHPElement().getElementType() == IModelElement.SOURCE_MODULE);
Assert.assertTrue(sourceBinding.getKind() == IBinding.INCLUDE);