본문 바로가기

도서관

[강의] 영진 - 5주) QA업무 사례 - 매니지먼트

 

0123456789101112131415161718192021222324252627282930313233343536373839



[목차]

Part I.  매니지먼트 소개 – 간트프로젝트
- 1. PM의 주요 개념
- 2. PMS 의 종류
- 3. 마인드맵의 설치와 사용
- 4. 간트프로젝트 설치와 사용
- 5. Hansoft 의 주요 기능

Part II. QA업무와 엑셀
- 1. 매니지먼트 업무 사례
- 2. QA업무의 엑셀 활용


[내용]

Part I. 매니지먼트 소개 – 간트

I – 1. PM 의 주요 개념

정의 :  Project management is the discipline of planning, organizing, securing and managing resources
          to bring about the successful completion of specific engineering project goals and objectives.
          출처 : http://www.wikipedia.org

Mind Map : A mind map is a diagram used to represent words, ideas, tasks, or other items
                  linked to and arranged around a central key word or idea.

WBS : A work breakdown structure (WBS) in project management and systems engineering, is a tool used to define and group
          a project's discrete work elements in a way that helps organize and define the total work scope of the project.

Gantt chart : A Gantt chart is a type of bar chart that illustrates a project schedule.

Agile : Agile software development is a group of software development methodologies based on iterative and incremental development,
           where requirements and solutions evolve through collaboration between self-organizing, cross-functional teams.


I – 2. 매니지먼트 프로그램

FreeMind : http://freemind.sourceforge.net

GanttProject : http://www.ganttproject.biz

MSproject : http://www.microsoft.com/project

Hansoft : http://www.hansoft.se

Redmine : http://www.redmine.org

Google : http://www.goole.com, 기업용 애플리케이션 서비스

Naver : http://www.naver.com


I – 3. 프리 마인드 의 설치와 사용

해보기! 프리 마인드 http://freemind.sourceforge.net


I – 4. 간트 프로젝트 의 설치와 사용

해보기! 간트 프로젝트 http://www.ganttproject.biz


I – 5. Hansoft 의 주요 기능

PMS 형태 중에서 게임 개발에 가장 적합하다고 알려진 프로그램 (http://www.hansoft.se)

매니지먼트 프로그램의 주요 기능
1) 프로젝트 관리 – 프로젝트 세팅, 인력 설정
2) 이슈 관리 – 내용, 일정, 인력, 체인
3) 통계 관리와 공유 – 보고, 개인별 페이지, 알림

QA 업무 진행 – 버그 관리, 보고, 피드백

 

Part II. QA업무와  엑셀

II – 1. 매니지먼트 업무 사례

1) 개발팀의 업무 형태 파악
2) 프로세스에 맞는 표현 방식 결정
3) 적응 기간을 거쳐 PMS 적용
※ 예 : 엑셀로 작성한 일정관리

PMS 통합과 개별 툴 사용에 대한 장단점을 따져본 후 도입
※ 예 : PMP에 적용한 화면


II – 2. QA업무의 엑셀 활용

해보기! 엑셀 매크로 기능을 사용하여 중복된 이름을 걸러내고, 한번씩만 이름을 출력하는 매크로를 작성해 보자.

    Sub sample()
    data_name = "data“
    linenum_input = 1
    i = 2
    j = 2
    outplag_i = 0
    Do
        this_str = Worksheets(data_name).Cells(i, 1).Value
        before_str = Worksheets(data_name).Cells(i - 1, 1).Value
        If (this_str = "") Then
            outplag_i = 1
        End If
        If (this_str <> before_str) Then
            Worksheets(data_name).Cells(j, 2).Value = this_str
            j = j + 1
        End If
        i = i + 1
        If i > 60000 Then
            outplag_i = 1
        End If
    Loop Until outplag_i = 1
    End Sub

 

Q & A