コード例 #1
0
 /**
  * @param {*} other
  */
 isNotEqualTo(other) {
     if (equate(this.subject, other)) {
         this._failExpected('to NOT equal', other);
     }
 }
コード例 #2
0
 /**
  * @param {*} other
  */
 isEqualTo(other) {
     if (!equate(this.subject, other)) {
         this._failExpected('to equal', other);
     }
 }