dependencyProjectStub, instruction)));
assertThat(new DefaultProjectDependency(dependencyProjectStub, "conf1", instruction), strictlyEqual(new DefaultProjectDependency(
dependencyProjectStub, "conf1", instruction)));
assertThat(new DefaultProjectDependency(dependencyProjectStub, "conf1", instruction), not(equalTo(new DefaultProjectDependency(
dependencyProjectStub, "conf2", instruction))));
Project otherProject = context.mock(Project.class, "otherProject");
assertThat(new DefaultProjectDependency(dependencyProjectStub, instruction), not(equalTo(new DefaultProjectDependency(
otherProject, instruction))));
assertThat(new DefaultProjectDependency(dependencyProjectStub, instruction), not(equalTo(new DefaultProjectDependency(
dependencyProjectStub, new ProjectDependenciesBuildInstruction(null)))));
}