Search in sources :

Example 1 with Builder

use of hudson.tasks.Builder in project hudson-2.x by hudson.

the class CopyOnWriteListEqualsHashCodeTest method setUp.

@Before
public void setUp() {
    data1 = new ArrayList<Builder>();
    data1.add(new Shell("echo 'test'"));
    data1.add(new Shell("echo 'test1'"));
    data1.add(new Shell("echo 'test2'"));
    data2 = new ArrayList<Builder>();
    data2.add(new Shell("echo 'test1'"));
    data2.add(new Shell("echo 'test'"));
}
Also used : Shell(hudson.tasks.Shell) Builder(hudson.tasks.Builder) Before(org.junit.Before)

Aggregations

Builder (hudson.tasks.Builder)1 Shell (hudson.tasks.Shell)1 Before (org.junit.Before)1