MavenITAssertions.java

  1. package com.soebes.itf.extension.assertj;

  2. /*
  3.  * Licensed to the Apache Software Foundation (ASF) under one
  4.  * or more contributor license agreements.  See the NOTICE file
  5.  * distributed with this work for additional information
  6.  * regarding copyright ownership.  The ASF licenses this file
  7.  * to you under the Apache License, Version 2.0 (the
  8.  * "License"); you may not use this file except in compliance
  9.  * with the License.  You may obtain a copy of the License at
  10.  *
  11.  *  http://www.apache.org/licenses/LICENSE-2.0
  12.  *
  13.  * Unless required by applicable law or agreed to in writing,
  14.  * software distributed under the License is distributed on an
  15.  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  16.  * KIND, either express or implied.  See the License for the
  17.  * specific language governing permissions and limitations
  18.  * under the License.
  19.  */

  20. import com.soebes.itf.jupiter.maven.MavenCacheResult;
  21. import com.soebes.itf.jupiter.maven.MavenExecutionResult;
  22. import com.soebes.itf.jupiter.maven.MavenLog;
  23. import com.soebes.itf.jupiter.maven.MavenProjectResult;
  24. import org.apiguardian.api.API;
  25. import org.assertj.core.api.Assertions;
  26. import org.assertj.core.util.CheckReturnValue;

  27. import static org.apiguardian.api.API.Status.EXPERIMENTAL;

  28. /**
  29.  * Entry point to all Maven specific assertions needed in integration testing.
  30.  *
  31.  * @author Karl Heinz Marbaise
  32.  */
  33. @CheckReturnValue
  34. @API(status = EXPERIMENTAL, since = "0.1.0")
  35. public class MavenITAssertions extends Assertions {

  36.   private MavenITAssertions() {
  37.     // intentionally empty.
  38.   }

  39.   public static MavenExecutionResultAssert assertThat(MavenExecutionResult actual) {
  40.     return new MavenExecutionResultAssert(actual);
  41.   }

  42.   public static MavenProjectResultAssert assertThat(MavenProjectResult actual) {
  43.     return new MavenProjectResultAssert(actual);
  44.   }

  45.   public static MavenLogAssert assertThat(MavenLog actual) {
  46.     return new MavenLogAssert(actual);
  47.   }

  48.   public static MavenCacheResultAssert assertThat(MavenCacheResult actual) {
  49.     return new MavenCacheResultAssert(actual);
  50.   }
  51. }