※ tutorialspoint의 OOAD 요약 (https://www.tutorialspoints.com/object_oriented_analysis_design/) 코드 작성 후, 코드가 가질 수 있는 여러 에러들을 처리하도록 테스트는 필수이다. 다른 중요 관점은, 프로그램이 목표를 만족하는지를 확인하는 것이다. 1. Testing Object-Oriented Systems SW 개발에서의 testing은 지속적은 활동이다. object oriented system에서 테스트는 unit test, subsystem test, system test의 3단계로 구분한다. Unit Testing 개별 class에 대한 테스트. class attribute가 설계한대로 구현되었는지, method / inter..

※ tutorialspoint의 OOAD 요약 (https://www.tutorialspoints.com/object_oriented_analysis_design/) 1. Implementation using Programming Languages C++, Java, Smalltalk, C#, Python 등의 object oriented programming language 존재. C++ 기준으로 설명. 아래 그림은 Circle class에 대한 C++ 표현. 2. Implementing Associations 대부분의 프로그래밍 언어는 직접적으로 associatoin을 구현하는 구조를 제공하지 않는다. association 구현은 상당한 고민이 필요하다. association은 unidirection..
※ tutorialspoint의 OOAD 요약 (https://www.tutorialspoints.com/object_oriented_analysis_design/) 분석 단계 후에는, object oriented design을 사용한 object oriented model을 개발. OOD에서는, 분석 모델의 비기술적 concept을 구현 클래스로 매핑하고, 제약 사항을 구분하고, 인터페이스를 설계. 간단히 말해서, concrete technology 기바능로 어떻게 시스템을 구축하는지에 관한 설명. Definition of the context of the system Designing system architecture Identification of the objects in the system C..