硒如果测试失败MVN构建也失败

时间:2019-11-18 12:12:23

标签: maven build testng assert

我写了一些代码:

foreach ($productlisting as $product) {

    $ProductManual = DB::table('manualproducts')->where('div_id', $product->id)->get();
    $serialize_products = unserialize($ProductManual[0]->product_id);
    $serialize_productsS = implode(",", $serialize_products);
    $ManualProducts = \App\Product::whereIn('id', $serialize_products)->orderby(DB::raw('FIELD(id,' . $serialize_productsS . ')'))->paginate(3, ['*'], 'ManualProducts');

    // dd($ManualProducts);
}

运行 @Test public void test2() { Assert.assertEquals(12,13,"its not match"); } } 时,构建和测试均失败。 我在Google上搜索后发现需要添加mvn clean test,但是我已经将其添加到了pom中。

这是我的 pom.xml

maven-surefire-plugin

0 个答案:

没有答案