Published using Google Docs
TestAnalytics 도입 (by Google 사례) (1)
Updated automatically every 5 minutes

Test Analytics (ACC 접근 방법) 적용

들어가는 말

Test Planning 이대로 좋은가에 대한 고민에서 출발한 Google의 시도를 적용해본다.

http://googletesting.blogspot.com/2011/09/10-minute-test-plan.html (James Whittaker - 10 Minutes Test Plan)

Google test analytics 가 오픈소스화 되었다. link

Test-Analytics의 Self-hosting

 >> git clone https://yeoyg98@code.google.com/r/yeoyg98-nbp-testanalytics/ 

<!-- 구글 App Engine 서버 id 및 계정 설정 →

    <server>

      <id>appengine.google.com</id>

      <username>yeoyg98@gmail.com</username><!-- 구글 App Engine 계정 id

      <password>qaz@11572</password><!-- -계정 비밀번호

    </server>

Trouble Shooting

  1. mvn gae:run 시에...  최종.. Found a jar file too large to upload .. 이슈
  1. (해결책) pom.xml에 ‘splitJars’ 세팅을 true로 변경함.

      <plugin>

        <groupId>net.kindleit</groupId>

        <artifactId>maven-gae-plugin</artifactId>

        <version>0.9.1</version>

        <configuration>

          <splitJars>true</splitJars>

        </configuration>

        <dependencies>

          <dependency>

            <groupId>net.kindleit</groupId>

            <artifactId>gae-runtime</artifactId>

            <version>${gae.version}</version>

            <type>pom</type>

          </dependency>

        </dependencies>

      </plugin>

참고 사이트

정보