Skip to main content
summaryrefslogtreecommitdiffstats
blob: 624235f4965f1242b85d9e907fb75f00cfd94dd2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*******************************************************************************
 * Copyright (c) 2013, 2015 EclipseSource and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    EclipseSource - initial API and implementation
 ******************************************************************************/
package org.eclipse.rap.jstestrunner.jasmine;

import org.eclipse.rap.jstestrunner.jasmine.JasmineReporter.Spec;
import org.eclipse.rap.jstestrunner.jasmine.JasmineReporter.Suite;


class SpecImpl implements Spec {

  private final Suite parent;
  private final String description;
  private final boolean passed;
  private final String error;

  SpecImpl( Suite parent, String description, boolean passed, String error ) {
    if( parent == null ) {
      throw new NullPointerException( "Parameter is null: parent" );
    }
    if( description == null ) {
      throw new NullPointerException( "Parameter is null: description" );
    }
    this.parent = parent;
    this.description = description;
    this.passed = passed;
    this.error = error;
  }

  @Override
  public Suite getSuite() {
    return parent;
  }

  @Override
  public String getDescription() {
    return description;
  }

  @Override
  public boolean hasPassed() {
    return passed;
  }

  @Override
  public String getError() {
    return error;
  }

  @Override
  public int hashCode() {
    int result = 1;
    result = 31 * result + parent.hashCode();
    result = 31 * result + description.hashCode();
    return result;
  }

  @Override
  public boolean equals( Object obj ) {
    if( this == obj ) {
      return true;
    }
    if( obj == null ) {
      return false;
    }
    if( getClass() != obj.getClass() ) {
      return false;
    }
    SpecImpl other = ( SpecImpl )obj;
    return parent.equals( other.parent ) && description.equals( other.description );
  }

}

Back to the top