JUnitを使用してサーブレットをテストする方法


112

Javaサーブレットを使用してWebシステムを作成したので、JUnitテストを実行したいと思います。私dataManagerはそれをデータベースに送信する基本的なコードです。JUnitでサーブレットをどのようにテストしますか?

ユーザーがAJAXを介してメインページから送信される登録/サインアップを許可する私のコード例:

public void doPost(HttpServletRequest request, HttpServletResponse response) 
         throws ServletException, IOException{

    // Get parameters
    String userName = request.getParameter("username");
    String password = request.getParameter("password");
    String name = request.getParameter("name");

    try {

        // Load the database driver
        Class.forName("com.mysql.jdbc.Driver");

        //pass reg details to datamanager       
        dataManager = new DataManager();
        //store result as string
        String result = dataManager.register(userName, password, name);

        //set response to html + no cache
        response.setContentType("text/html");
        response.setHeader("Cache-Control", "no-cache");
        //send response with register result
        response.getWriter().write(result);

    } catch(Exception e){
        System.out.println("Exception is :" + e);
    }  
}

回答:


169

Mockitoを使用してこれを行うと、モックが正しいパラメーターを返し、それらが実際に呼び出されたことを確認し(オプションで回数を指定)、「結果」を書き込んで正しいことを確認できます。

import static org.junit.Assert.*;
import static org.mockito.Mockito.*;
import java.io.*;
import javax.servlet.http.*;
import org.apache.commons.io.FileUtils;
import org.junit.Test;

public class TestMyServlet extends Mockito{

    @Test
    public void testServlet() throws Exception {
        HttpServletRequest request = mock(HttpServletRequest.class);       
        HttpServletResponse response = mock(HttpServletResponse.class);    

        when(request.getParameter("username")).thenReturn("me");
        when(request.getParameter("password")).thenReturn("secret");

        StringWriter stringWriter = new StringWriter();
        PrintWriter writer = new PrintWriter(stringWriter);
        when(response.getWriter()).thenReturn(writer);

        new MyServlet().doPost(request, response);

        verify(request, atLeast(1)).getParameter("username"); // only if you want to verify username was called...
        writer.flush(); // it may not have been flushed yet...
        assertTrue(stringWriter.toString().contains("My expected string"));
    }
}

このようにして、「Cache-Control」が応答時に設定されることをどのように保証しますか?
Markus Schulte 2013

34
ディスク上の実際のファイルに出力する代わりに、(PrintWriterのコンストラクターへのパラメーターとして)StringWriterを使用できます。次に、assertTrue(stringWriter.toString()。contains( "My Expected String"));を実行します。このようにして、テストはディスクの代わりにメモリを読み書きします。
spg

@aaronvargas:回答ありがとうございます!しかし、コードを実行すると、次のエラーが発生します。java.util.MissingResourceException:ベース名javax.servlet.LocalStringsのバンドルが見つかりません、ロケールde_DE-新しいMyServlet()。doPost(の実行中に発生します...)。何が壊れる可能性があるか考えていますか?
Benny Neugebauer

1
@BennyNeugebauer、バンドルがクラスパスにないようです。問題を特定するために、バンドルからのみ値を取得する別のJUnitテストを作成します。
aaronvargas

@aaronvargas、あなたのフィードバックをありがとう!私はそれに対する解決策を見つけました。私はpom.xmlの依存関係に「javax.servlet-api」を実行する必要がありました。
Benny Neugebauer、2014

49

まず、実際のアプリケーションでは、サーブレットでデータベース接続情報を取得することはありません。アプリサーバーで設定します。

ただし、コンテナを実行せずにサーブレットをテストする方法はいくつかあります。1つは、モックオブジェクトを使用することです。Springは、HttpServletRequest、HttpServletResponse、HttpServletSessionなどの非常に便利なモックのセットを提供します。

http://static.springsource.org/spring/docs/3.0.x/api/org/springframework/mock/web/package-summary.html

これらのモックを使用して、次のものをテストできます

ユーザー名がリクエストに含まれていない場合はどうなりますか?

ユーザー名がリクエストに含まれている場合はどうなりますか?

その後、次のようなことができます:

import static org.junit.Assert.assertEquals;

import java.io.IOException;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.junit.Before;
import org.junit.Test;
import org.springframework.mock.web.MockHttpServletRequest;
import org.springframework.mock.web.MockHttpServletResponse;

public class MyServletTest {
    private MyServlet servlet;
    private MockHttpServletRequest request;
    private MockHttpServletResponse response;

    @Before
    public void setUp() {
        servlet = new MyServlet();
        request = new MockHttpServletRequest();
        response = new MockHttpServletResponse();
    }

    @Test
    public void correctUsernameInRequest() throws ServletException, IOException {
        request.addParameter("username", "scott");
        request.addParameter("password", "tiger");

        servlet.doPost(request, response);

        assertEquals("text/html", response.getContentType());

        // ... etc
    }
}

3

Seleniumテストは、統合テストまたは機能テスト(エンドツーエンド)の方が便利だと思います。私はorg.springframework.mock.webを使用しようと取り組んでいますが、それほど遠くないです。jMockテストスイートを備えたサンプルコントローラーを接続しています。

まず、コントローラー:

package com.company.admin.web;

import javax.validation.Valid;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.validation.BindingResult;
import org.springframework.validation.ObjectError;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.SessionAttributes;
import org.springframework.web.bind.support.SessionStatus;

import com.company.admin.domain.PaymentDetail;
import com.company.admin.service.PaymentSearchService;
import com.company.admin.service.UserRequestAuditTrail;
import com.company.admin.web.form.SearchCriteria;

/**
 * Controls the interactions regarding to the refunds.
 * 
 * @author slgelma
 *
 */
@Controller
@SessionAttributes({"user", "authorization"})
public class SearchTransactionController {

    public static final String SEARCH_TRANSACTION_PAGE = "searchtransaction";

    private PaymentSearchService searchService;
    //private Validator searchCriteriaValidator;
    private UserRequestAuditTrail notifications;

    @Autowired
    public void setSearchService(PaymentSearchService searchService) {
        this.searchService = searchService;
    }

    @Autowired
    public void setNotifications(UserRequestAuditTrail notifications) {
        this.notifications = notifications;
    }

    @RequestMapping(value="/" + SEARCH_TRANSACTION_PAGE)
    public String setUpTransactionSearch(Model model) {
        SearchCriteria searchCriteria = new SearchCriteria();
        model.addAttribute("searchCriteria", searchCriteria);
        notifications.transferTo(SEARCH_TRANSACTION_PAGE);
        return SEARCH_TRANSACTION_PAGE;
    }

    @RequestMapping(value="/" + SEARCH_TRANSACTION_PAGE, method=RequestMethod.POST, params="cancel")
    public String cancelSearch() {
        notifications.redirectTo(HomeController.HOME_PAGE);
        return "redirect:/" + HomeController.HOME_PAGE;
    }

    @RequestMapping(value="/" + SEARCH_TRANSACTION_PAGE, method=RequestMethod.POST, params="execute")
    public String executeSearch(
            @ModelAttribute("searchCriteria") @Valid SearchCriteria searchCriteria,
            BindingResult result, Model model,
            SessionStatus status) {
        //searchCriteriaValidator.validate(criteria, result);
        if (result.hasErrors()) {
            notifications.transferTo(SEARCH_TRANSACTION_PAGE);
            return SEARCH_TRANSACTION_PAGE;
        } else {
            PaymentDetail payment = 
                searchService.getAuthorizationFor(searchCriteria.geteWiseTransactionId());
            if (payment == null) {
                ObjectError error = new ObjectError(
                        "eWiseTransactionId", "Transaction not found");
                result.addError(error);
                model.addAttribute("searchCriteria", searchCriteria);
                notifications.transferTo(SEARCH_TRANSACTION_PAGE);
                return SEARCH_TRANSACTION_PAGE;
            } else {
                model.addAttribute("authorization", payment);
                notifications.redirectTo(PaymentDetailController.PAYMENT_DETAIL_PAGE);
                return "redirect:/" + PaymentDetailController.PAYMENT_DETAIL_PAGE;
            }
        }
    }

}

次に、テスト:

    package test.unit.com.company.admin.web;

    import static org.hamcrest.Matchers.containsString;
    import static org.hamcrest.Matchers.equalTo;
    import static org.junit.Assert.assertThat;

    import org.jmock.Expectations;
    import org.jmock.Mockery;
    import org.jmock.integration.junit4.JMock;
    import org.jmock.integration.junit4.JUnit4Mockery;
    import org.junit.Before;
    import org.junit.Test;
    import org.junit.runner.RunWith;
    import org.springframework.ui.Model;
    import org.springframework.validation.BindingResult;
    import org.springframework.validation.ObjectError;
    import org.springframework.web.bind.support.SessionStatus;

    import com.company.admin.domain.PaymentDetail;
    import com.company.admin.service.PaymentSearchService;
    import com.company.admin.service.UserRequestAuditTrail;
    import com.company.admin.web.HomeController;
    import com.company.admin.web.PaymentDetailController;
    import com.company.admin.web.SearchTransactionController;
    import com.company.admin.web.form.SearchCriteria;

    /**
     * Tests the behavior of the SearchTransactionController.
     * @author slgelma
     *
     */
    @RunWith(JMock.class)
    public class SearchTransactionControllerTest {

        private final Mockery context = new JUnit4Mockery(); 
        private final SearchTransactionController controller = new SearchTransactionController();
        private final PaymentSearchService searchService = context.mock(PaymentSearchService.class);
        private final UserRequestAuditTrail notifications = context.mock(UserRequestAuditTrail.class);
        private final Model model = context.mock(Model.class);


        /**
         * @throws java.lang.Exception
         */
        @Before
        public void setUp() throws Exception {
            controller.setSearchService(searchService);
            controller.setNotifications(notifications);
        }

        @Test
        public void setUpTheSearchForm() {

            final String target = SearchTransactionController.SEARCH_TRANSACTION_PAGE;

            context.checking(new Expectations() {{
                oneOf(model).addAttribute(
                        with(any(String.class)), with(any(Object.class)));
                oneOf(notifications).transferTo(with(any(String.class)));
            }});

            String nextPage = controller.setUpTransactionSearch(model);
            assertThat("Controller is not requesting the correct form", 
                    target, equalTo(nextPage));
        }

        @Test
        public void cancelSearchTest() {

            final String target = HomeController.HOME_PAGE;

            context.checking(new Expectations(){{
                never(model).addAttribute(with(any(String.class)), with(any(Object.class)));
                oneOf(notifications).redirectTo(with(any(String.class)));
            }});

            String nextPage = controller.cancelSearch();
            assertThat("Controller is not requesting the correct form", 
                    nextPage, containsString(target));
        }

        @Test
        public void executeSearchWithNullTransaction() {

            final String target = SearchTransactionController.SEARCH_TRANSACTION_PAGE;

            final SearchCriteria searchCriteria = new SearchCriteria();
            searchCriteria.seteWiseTransactionId(null);

            final BindingResult result = context.mock(BindingResult.class);
            final SessionStatus status = context.mock(SessionStatus.class);

            context.checking(new Expectations() {{
                allowing(result).hasErrors(); will(returnValue(true));
                never(model).addAttribute(with(any(String.class)), with(any(Object.class)));
                never(searchService).getAuthorizationFor(searchCriteria.geteWiseTransactionId());
                oneOf(notifications).transferTo(with(any(String.class)));
            }});

            String nextPage = controller.executeSearch(searchCriteria, result, model, status);
            assertThat("Controller is not requesting the correct form", 
                    target, equalTo(nextPage));
        }

        @Test
        public void executeSearchWithEmptyTransaction() {

            final String target = SearchTransactionController.SEARCH_TRANSACTION_PAGE;

            final SearchCriteria searchCriteria = new SearchCriteria();
            searchCriteria.seteWiseTransactionId("");

            final BindingResult result = context.mock(BindingResult.class);
            final SessionStatus status = context.mock(SessionStatus.class);

            context.checking(new Expectations() {{
                allowing(result).hasErrors(); will(returnValue(true));
                never(model).addAttribute(with(any(String.class)), with(any(Object.class)));
                never(searchService).getAuthorizationFor(searchCriteria.geteWiseTransactionId());
                oneOf(notifications).transferTo(with(any(String.class)));
            }});

            String nextPage = controller.executeSearch(searchCriteria, result, model, status);
            assertThat("Controller is not requesting the correct form", 
                    target, equalTo(nextPage));
        }

        @Test
        public void executeSearchWithTransactionNotFound() {

            final String target = SearchTransactionController.SEARCH_TRANSACTION_PAGE;
            final String badTransactionId = "badboy"; 
            final PaymentDetail transactionNotFound = null;

            final SearchCriteria searchCriteria = new SearchCriteria();
            searchCriteria.seteWiseTransactionId(badTransactionId);

            final BindingResult result = context.mock(BindingResult.class);
            final SessionStatus status = context.mock(SessionStatus.class);

            context.checking(new Expectations() {{
                allowing(result).hasErrors(); will(returnValue(false));
                atLeast(1).of(model).addAttribute(with(any(String.class)), with(any(Object.class)));
                oneOf(searchService).getAuthorizationFor(with(any(String.class)));
                    will(returnValue(transactionNotFound));
                oneOf(result).addError(with(any(ObjectError.class)));
                oneOf(notifications).transferTo(with(any(String.class)));
            }});

            String nextPage = controller.executeSearch(searchCriteria, result, model, status);
            assertThat("Controller is not requesting the correct form", 
                    target, equalTo(nextPage));
        }

        @Test
        public void executeSearchWithTransactionFound() {

            final String target = PaymentDetailController.PAYMENT_DETAIL_PAGE;
            final String goodTransactionId = "100000010";
            final PaymentDetail transactionFound = context.mock(PaymentDetail.class);

            final SearchCriteria searchCriteria = new SearchCriteria();
            searchCriteria.seteWiseTransactionId(goodTransactionId);

            final BindingResult result = context.mock(BindingResult.class);
            final SessionStatus status = context.mock(SessionStatus.class);

            context.checking(new Expectations() {{
                allowing(result).hasErrors(); will(returnValue(false));
                atLeast(1).of(model).addAttribute(with(any(String.class)), with(any(Object.class)));
                oneOf(searchService).getAuthorizationFor(with(any(String.class)));
                    will(returnValue(transactionFound));
                oneOf(notifications).redirectTo(with(any(String.class)));
            }});

            String nextPage = controller.executeSearch(searchCriteria, result, model, status);
            assertThat("Controller is not requesting the correct form", 
                    nextPage, containsString(target));
        }

    }

これがお役に立てば幸いです。


3

2018年2月更新:OpenBrace Limitedは閉鎖され、ObMimic製品はサポートされなくなりました。

OpenBraceのObMimicライブラリであるサーブレットAPI test-doubles を使用した別の代替方法を次に示します(開示:私はその開発者です)。

package com.openbrace.experiments.examplecode.stackoverflow5434419;

import static org.junit.Assert.*;
import com.openbrace.experiments.examplecode.stackoverflow5434419.YourServlet;
import com.openbrace.obmimic.mimic.servlet.ServletConfigMimic;
import com.openbrace.obmimic.mimic.servlet.http.HttpServletRequestMimic;
import com.openbrace.obmimic.mimic.servlet.http.HttpServletResponseMimic;
import com.openbrace.obmimic.substate.servlet.RequestParameters;
import org.junit.Before;
import org.junit.Test;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;

/**
 * Example tests for {@link YourServlet#doPost(HttpServletRequest,
 * HttpServletResponse)}.
 *
 * @author Mike Kaufman, OpenBrace Limited
 */
public class YourServletTest {

    /** The servlet to be tested by this instance's test. */
    private YourServlet servlet;

    /** The "mimic" request to be used in this instance's test. */
    private HttpServletRequestMimic request;

    /** The "mimic" response to be used in this instance's test. */
    private HttpServletResponseMimic response;

    /**
     * Create an initialized servlet and a request and response for this
     * instance's test.
     *
     * @throws ServletException if the servlet's init method throws such an
     *     exception.
     */
    @Before
    public void setUp() throws ServletException {
        /*
         * Note that for the simple servlet and tests involved:
         * - We don't need anything particular in the servlet's ServletConfig.
         * - The ServletContext isn't relevant, so ObMimic can be left to use
         *   its default ServletContext for everything.
         */
        servlet = new YourServlet();
        servlet.init(new ServletConfigMimic());
        request = new HttpServletRequestMimic();
        response = new HttpServletResponseMimic();
    }

    /**
     * Test the doPost method with example argument values.
     *
     * @throws ServletException if the servlet throws such an exception.
     * @throws IOException if the servlet throws such an exception.
     */
    @Test
    public void testYourServletDoPostWithExampleArguments()
            throws ServletException, IOException {

        // Configure the request. In this case, all we need are the three
        // request parameters.
        RequestParameters parameters
            = request.getMimicState().getRequestParameters();
        parameters.set("username", "mike");
        parameters.set("password", "xyz#zyx");
        parameters.set("name", "Mike");

        // Run the "doPost".
        servlet.doPost(request, response);

        // Check the response's Content-Type, Cache-Control header and
        // body content.
        assertEquals("text/html; charset=ISO-8859-1",
            response.getMimicState().getContentType());
        assertArrayEquals(new String[] { "no-cache" },
            response.getMimicState().getHeaders().getValues("Cache-Control"));
        assertEquals("...expected result from dataManager.register...",
            response.getMimicState().getBodyContentAsString());

    }

}

ノート:

  • 各「ミミック」には、その論理状態の「mimicState」オブジェクトがあります。これにより、サーブレットAPIメソッドと、ミミックの内部状態の構成および検査が明確に区別されます。

  • Content-Typeのチェックに「charset = ISO-8859-1」が含まれていることに驚くかもしれません。ただし、指定された「doPost」コードの場合、これはServlet API Javadoc、HttpServletResponse自体のgetContentTypeメソッド、およびGlassfish 3などで生成された実際のContent-Typeヘッダーのとおりです。通常のモックオブジェクトとAPIの動作に対する独自の期待。この場合はおそらく問題ではありませんが、より複雑な場合、これは一種の予期せぬAPIの動作であり、モックのあざけりのようなものになります。

  • 私はresponse.getMimicState().getContentType()Content-Typeをチェックして上記のポイントを説明する最も簡単な方法として使用しましたが、必要に応じて(text / html)を単独でチェックすることもできます(を使用response.getMimicState().getContentTypeMimeType())。Cache-Controlヘッダーの場合と同じ方法でContent-Typeヘッダーを確認することもできます。

  • この例では、応答コンテンツは文字データとしてチェックされます(これにより、ライターのエンコーディングが使用されます)。またresponse.getMimicState().isWritingCharacterContent()、(を使用して)そのOutputStreamではなくWriterが使用されていることを確認することもできますが、結果の出力のみに関係し、どのAPIコールがそれを生成したかは気にしません(ただし、チェックも...)応答の本文コンテンツをバイトとして取得したり、Writer / OutputStreamの詳細な状態を調べたりすることもできます。

ObMimicの詳細とOpenBraceウェブサイトでの無料ダウンロードがあります。または、質問がある場合は私に連絡することができます(連絡先の詳細はウェブサイトにあります)。


2

編集:サボテンは死んだプロジェクトになりました:http : //attic.apache.org/projects/jakarta-cactus.html


サボテンを見たいと思うかもしれません。

http://jakarta.apache.org/cactus/

プロジェクトの説明

Cactusは、サーバー側のJavaコード(サーブレット、EJB、タグライブラリ、フィルターなど)をユニットテストするためのシンプルなテストフレームワークです。

Cactusの目的は、サーバー側コードのテストを記述するコストを削減することです。JUnitを使用して拡張します。

Cactusはコンテナ内戦略を実装しています。つまり、テストはコンテナ内で実行されます。


2

もう1つのアプローチは、サーブレットを「ホスト」する組み込みサーバーを作成し、実際のサーバーを呼び出すことを目的としたライブラリを使用してサーブレットを呼び出すことができるようにすることです(このアプローチの有用性は、「正当な」プログラムを簡単に作成できるかどうかにある程度依存します。サーバーへの呼び出し-私は、JMS(Java Messaging Service)アクセスポイントをテストしていました。

あなたが行くことができるいくつかの異なるルートがあります-通常の2つはtomcatとjettyです。

警告:埋め込むサーバーを選択するときに注意すべき点は、使用しているservlet-apiのバージョン(HttpServletRequestなどのクラスを提供するライブラリ)です。2.5を使用している場合は、Jetty 6.xが適切に機能することがわかりました(以下に例を示します)。servlet-api 3.0を使用している場合、tomcat-7組み込みのものは良いオプションのようですが、私がテストしていたアプリケーションはservlet-api 2.5を使用したため、使用をやめる必要がありました。2つを混在させようとすると、サーバーを構成または起動しようとしたときに、NoSuchMethodおよびその他の例外が発生します。

このようなサーバーを次のように設定できます(Jetty 6.1.26、servlet-api 2.5):

public void startServer(int port, Servlet yourServletInstance){
    Server server = new Server(port);
    Context root = new Context(server, "/", Context.SESSIONS);

    root.addServlet(new ServletHolder(yourServletInstance), "/servlet/context/path");

    //If you need the servlet context for anything, such as spring wiring, you coudl get it like this
    //ServletContext servletContext = root.getServletContext();

    server.start();
}

また、依存性注入の調査で選択した場合は、おそらくSpringに出くわすことになります。Springはコンテキストを使用して、挿入された項目を検索します。サーブレットが最終的にSpringを使用する場合、上記のメソッドに(start呼び出しの前に)以下を追加することにより、テストと同じコンテキストを提供できます。XmlWebApplicationContext wctx = new XmlWebApplicationContext(); wctx.setParent(yourAppContext); wctx.setConfigLocation( ""); wctx.setServletContext(servletContext); wctx.refresh(); servletContext.setAttribute(WebApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE、wctx);
romeara 2014年

1

Webベースの単体テストにはSeleniumを使用します。Selenium IDEと呼ばれるFirefoxプラグインがあり、Webページでのアクションを記録し、Selenium RCを使用してテストサーバーを実行するJUnitテストケースにエクスポートできます。


これは良さそうに見えますが、メソッド/サーブレットのコードを直接テストするのではなく、実際にテストしますか?または私は間違っています。
11月

これは、プログラムでHTTP要求を発生させることによって行われます。
BalusC 2011年

1
 public class WishServletTest {
 WishServlet wishServlet;
 HttpServletRequest mockhttpServletRequest;
 HttpServletResponse mockhttpServletResponse;

@Before
public void setUp(){
    wishServlet=new WishServlet();
    mockhttpServletRequest=createNiceMock(HttpServletRequest.class);
    mockhttpServletResponse=createNiceMock(HttpServletResponse.class);
}

@Test
public void testService()throws Exception{
    File file= new File("Sample.txt");
    File.createTempFile("ashok","txt");
    expect(mockhttpServletRequest.getParameter("username")).andReturn("ashok");
    expect(mockhttpServletResponse.getWriter()).andReturn(new PrintWriter(file));
    replay(mockhttpServletRequest);
    replay(mockhttpServletResponse);
    wishServlet.doGet(mockhttpServletRequest, mockhttpServletResponse);
    FileReader fileReader=new FileReader(file);
    int count = 0;
    String str = "";
    while ( (count=fileReader.read())!=-1){
        str=str+(char)count;
    }

    Assert.assertTrue(str.trim().equals("Helloashok"));
    verify(mockhttpServletRequest);
    verify(mockhttpServletResponse);

}

}

0

まず、これを少しリファクタリングして、DataManagerがdoPostコードで作成されないようにする必要があります。インスタンスを取得するには、依存性注入を試してください。(DIの素晴らしい紹介については、Guiceビデオを参照してください。)すべてのユニットテストを開始するように指示されている場合、DIは必須です。

依存関係が注入されたら、クラスを分離してテストできます。

サーブレットを実際にテストするために、これについて説明している他の古いスレッドがありますここここを試しください


コメントありがとうございます。DataManagerはそのサーブレット内のメソッド内に作成する必要があると言っていますか?私は、Javaに非常に新しい:(そのビデオとdidntのは本当にそれを理解して見て、テストのいずれかの種類をやったことがない。
ルナ

そのGuiceビデオ(少なくとも冒頭)をご覧ください。ユニットテストを計画しているクラスで、新しいオブジェクトをインスタンス化したくない理由を説明するのに役立ちます。
Roy Truelove
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.