0

私はこのクラスを持っていますが、Eclipseはそれをテストクラスとして認識しないため、JUnitテストとして実行できません.TestNGはJUnitとNUnitから着想を得たテストフレームワークですが、より強力にするいくつかの新しい機能を導入していますより使いやすく、

import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.MockitoAnnotations;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;


public class ApplicationServiceImplTest {

    @Mock
    ApplicationDao dao;

    @InjectMocks
    ApplicationMutatorServiceImpl applicationMutatorServiceImpl;

    @BeforeClass
    public void setUp(){
        MockitoAnnotations.initMocks(this);
    }

    @Test
    public void testSave() throws Exception {

        Application application = new Application();
        applicationMutatorServiceImpl.save(application);
        System.out.println (application);

    }
}

私のpom.xmlで

 <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>${junit.version}</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-all</artifactId>
            <version>${mockito.version}</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>${testng.version}</version>
            <scope>test</scope>
        </dependency>
4

1 に答える 1

2

TestNG プラグインがインストールされているかどうかを確認します。 http://singinginthesunlight.blogspot.in/2016/02/testng-for-dummies.html

それ以外の場合は、Maven を介して実行できます

于 2016-02-20T14:13:34.400 に答える