【從學員練習影片觀察到一個關於 TDD 的有趣現象】
極速開發的課後練習作業,雖說重點是放在極速開發要學習的技巧與刻意練習的模型,但開發的方式、順序也是刻意安排成類似 TDD 的進行方式,來讓生產力最大化(TDD 本來就是幫助開發的,不是幫助測試的)
我從2位第一次上我課的學員(當然就是 #極速開發,代表他們沒上過#單元測試 跟 #TDD與持續重構),雖然他們是照著示範影片、上課教學用 TDD 在寫整個 tennis 的過程,但從他們執行測試的時間點就可以發現:
「他是用測試來驗證 production code 的正確性」,即使他先寫了測試,也不先執行,沒有看到紅燈,每次都等到 production code 寫完了,應該要綠燈時,才執行測試。
而其他上過 TDD 課的同學 ,或是上過單元測試的同學,知道測試是用來描述情境,如果現在「加入的這個情境是新的需求或需求異動,代表目前 production code 還不支援這個情境,執行測試跑出的紅燈,就是等等 production code 要完成的 #目標」
test-frist 從來都只是 TDD 其中一個小小的衍生產物,而不是全貌。TDD, 測試驅動開發 從來都是一種開發方法,而不是測試方法。
總有些人老愛把 TDD 拿來跟測試相提並論,就總是喜歡把 test-first 當作靶子打,覺得違反人性跟直覺,覺得先寫測試在很多情況下是浪費時間或是不 work,可能拿來跟一堆測試的方法論相提並論,或總是只拿回歸測試的效益來當作 TDD 的整體。抑或是陷入 isolation unit test 與 integration test (其實就是非 isolation 等級、有實際依賴的自動測試)之爭。
```
註:TDD 事實上是可以不是單元測試等級的。
```
要比較正確看待 TDD 的角度,首先要知道它是幫助開發的、它是一種開發方式(當然不是唯一一種,甚至也不會是最好的一種,因為根本沒有最好,只有剛好)
接著要了解 TDD 可能用 IPO 模型還比較貼切,input-process-output,在你開發任何功能之前,你總要先想過這件事。而先想這件事,才是 TDD 的最基本精神。
接著是怎麼把你想好的東西,變成可執行的 spec,我們只是用測試程式來「描述」你腦袋中的「IPO模型」,把 process 的過程當作一個黑箱子。
而這個 IPO 模型在結合成「使用情境」,就會帶來「高易用性 API 的好處」,只有在一開始就先想好怎麼給別人用,最後才會好用。所謂的一開始想好,指的不是預先設計一堆 class,而是 input/output 想清楚期待(一般會結合實例化需求,搭配 Given/When/Then 的 gherkin style 來把前置條件、資料、前提想好,當發生什麼事,應該是怎樣的結果),然後描述它。在紅燈定義清楚目標,綠燈完成 input/output 關係且沒弄壞前面的所有情境後,來針對 process 進行重構(事實上 Kent Beck 的 TDD by Example 更多是用 refactor 來 #完成 process。
```
註:所謂的 output 不一定只有回傳值,包含外部依賴狀態、資料的改變,甚至顆粒度小一點,針對物件導向設計的話,物件內部狀態的改變也算,只是物件內部狀態改變,驗證點要嘛是拿得到內部狀態,要嘛就是要驗證物件哪個行為會因這個內部狀態而有所不同。
```
## 戰 TDD 之前該先做好的功課
要戰 TDD,是不是至少要把 Kent Beck 的 TDD by Example 看完?
要戰 TDD,請不要拿它跟測試方法論來比,那只是一下就被人看破手腳。因為它是個開發方法論。
要戰 TDD,請不要把它的好處只限縮在跟回歸測試、自動測試的比較,因為那只是它的衍生好處,當你試過在白海報紙上 TDD 就懂,TDD 是在釐清你的思緒的同時,又可以以終為始,確保你在 production code 的每一個動作都是為了滿足某個期待的情境。
要戰 TDD,請不要去把 單元測試、整合測試捲進來,那是測試的顆粒度,那是測試的分類,TDD 從來都不是只能限於單元測試。
要戰 TDD,請不要在那邊戰他是 bottom-up ,是直接從程式/class 的角度出發,事實上 TDD 既不是 bottom-up, 也不是 top-down, (書裡面就有講這件事咩),實務上的 TDD 結合倫敦派(GOOS)跟芝加哥派(Classic TDD),會更像 Outside-In 的進行方式,先定義好驗收情境,接著從最外部(也就是使用者看得到的部份)一路把依賴往另一邊的系統邊界推,直到推到系統以外的依賴資源(persistence 或 external API/service)
```
註: ATDD by Example 中 ATDD by Example, Kent Beck 寫的序最後的一段話。
Kent Beck:
「就像我曾說過的,TDD的一個缺點是,它可能會退化為一種用來滿足開發人員需求的編程技能。某些開發人員從更廣泛的角度來看待TDD,輕易在他們測試的不同抽象級別間跳躍。然而在ATDD中不存在歧義,這是一種加強與非編程人員溝通的技術。我們之間良好的協作關係,以及作為這種關係基礎的溝通,能夠使軟件開發更有效率。採用ATDD是向著溝通更清晰這個目標邁進的重要一步,而此書是一本全面又平易近人的入門讀物。」
```
要戰 TDD,請不要只關注在 test-frist,因為他只是用 test 來幫助你 think-first,不要邊寫邊想。然後不要過份依賴或相信你腦袋的能力,把你想好的東西具體化出來,最好可以被直接執行,最好除了你以外每個人執行出來的結果都會一樣(不管是對的,還是錯的)
要戰 TDD, 請不要把論點放在見樹不見林,如果你有看 TDD by Example 的 Part 1, Part 2 那兩個加起來共 24 個章節,就知道一開始就得把當下想到的全貌紀錄在一個「紙本」的 backlog (所謂的紙本,只是要講這並不依賴於任何工具)
而這個需求輪廓的全貌,會隨著你逐漸完成一部分一部分的情境,設計逐漸浮現後,而隨時跟著增減調整。
但不代表 TDD 就是先想到一個測試案例,就直接先幹下去了,那根本是亂搞。
以上這些,都還不是在列 TDD 的好處,而是針對那些從來沒搞懂 TDD 但又愛戰 TDD 的人一點提醒,你戰的很可能是「你誤解的 TDD」。
TDD 還有許多實務上的用途,列上我在譯者序中的一小段:
>> 測試驅動開發(Test-Driven Development, TDD)!一種以測試為開發輔助、以測試來描述需求情境、以測試來當作目標、以測試來表達期望、以測試來驗證疑問、以測試來實驗學習、以測試來溝通協作、以測試來協助設計高易用性 API 的「開發方法」。
譯者序有開放給大家看,請見:https://tdd.best/book/tdd-by-example/
拜託,要戰之前去看一下祖師爺 Kent Beck 對 TDD 的原始見解:https://www.tenlong.com.tw/products/9789864345618?list_name=srh
如果你想正確的使用 TDD 來幫助你在實務上產生許多的價值,帶來許多的好處,尤其是需求釐清、持續重構、小步快跑的部份,最好理解的培訓課就在這:https://tdd.best/courses/classic-tdd-by-example-video-training/
最後我想講一段話:
TDD 從來都不該被導入到團隊中,但它是一種很好的自我鍛鍊與學習的方式,也是一種能用很低的成本來帶來很多好處的開發方法(見下方註腳),然而它也不是適用所有的情況,但它可以讓『完美』變成一個動詞,而非不變的形容詞。
```
註:
Kent Beck 在 DHH 靠腰:《TDD is Dead》 之後寫的一篇反串文:《RIP TDD》
https://www.facebook.com/notes/1063422864115918/
我幾年前的簡易翻譯,通常也是 TDD 可以幫助你解決的問題,如下:
- Over-engineering (過度設計)
- API feedback (改善API的設計與可用性)
- Logic errors (想的跟寫的不一樣,寫的跟需求不一樣)
- Documentation (寫跟維護文件是痛苦的)
- Feeling overwhelmed (找不到切入點)
- Separate interface from implementation thinking (抽象設計)
- Agreement (確保已修正問題的證據)
- Anxiety (改東壞西的擔心受怕)
```
很久沒對 TDD 發表這種長篇大論了,因為不理解、不想理解、不同角度理解的人居多,能真的到各自的塔上用不同角度來看原義,以及實務上用它來幫助解決的問題有哪些的人,真的太少。
大部分人只想針對這個詞彙來攻訐以博得流量跟吸引目光,而不是想著「我可以用它來幫助我什麼」
問題跟需求是中性的,解決問題跟滿足需求的手段與方式有千萬種,不會只有一種,也不會有所謂的對錯,多點角度去了解不同的方法、方式,然後融會貫通,發揮綜效,在實務上用最少的成本與風險來產生最大的價值,這才是真正的目標。
導入敏捷不該是目標,導入 TDD 也不該是目標,目標永遠都是在實務上產生價值、解決問題、滿足需求。
同時也有4部Youtube影片,追蹤數超過20萬的網紅FON KIRURU,也在其Youtube影片中提到,วันนี้จะมาทดสอบทำอนิเนมชั่นขนาดเล็กและสั้นๆนะคะ ภาพมันจะเบลอด้วยค่ะ ใช้เวลาทำ 3 วันค่ะและได้ทดลองทั้ง 3 โปรแกรมเอามาทำรวมๆกันตามลำดับนะคะ Flash CS6 ...
「integration test」的推薦目錄:
- 關於integration test 在 91 敏捷開發之路 Facebook 的最佳解答
- 關於integration test 在 Pure Storage Facebook 的最佳解答
- 關於integration test 在 國立陽明交通大學電子工程學系及電子研究所 Facebook 的最讚貼文
- 關於integration test 在 FON KIRURU Youtube 的最讚貼文
- 關於integration test 在 CarDebuts Youtube 的最讚貼文
- 關於integration test 在 Adam Lobo TV Youtube 的精選貼文
- 關於integration test 在 What is an integration test exactly? - Software Engineering ... 的評價
- 關於integration test 在 ManageIQ/integration_tests: ManageIQ integration tests - GitHub 的評價
- 關於integration test 在 Integration Tests — Finatra 21.10.0 documentation 的評價
- 關於integration test 在 Flutter integration tests - multiple tests - Stack Overflow 的評價
integration test 在 Pure Storage Facebook 的最佳解答
Check out our own FlashBlade engineer, Nikita Sirohi, as she walks us through the process for a distributed system integration test that you can run from anywhere in about 15 seconds. https://purefla.sh/3xpOv9i
integration test 在 國立陽明交通大學電子工程學系及電子研究所 Facebook 的最讚貼文
[ASML Recruiting] IC Design Engineer
The job is located in Hsinchu/Tainan that could work on the advanced analog and mixed signal ASIC for next generation electron detection channel for the leading edge e-beam inspection and metrology systems with work life balance.
The following are the Job Descriptions for this opportunity
• Develop the functional blocks of high-speed Analog-to-Digital Converter (ADC) and/or Phase-Locked Loop (PLL) in ASIC for the detection channel of electron beam inspection tools, including:
• Define the design specifications of the Read-Out Integrated Chip (ROIC) or chipset based on product roadmap and System Performance Specifications (SPS) defined by system engineer.
• Develop new circuit architecture and technical solutions for next generation ASICs in detection channel, including feasibility study, schematic design, pre-layout simulation, layout design, and post-layout simulation.
• Cooperate with Printed Circuit Board (PCB) designer to design Evaluation Board (EVB) and with test engineer to test and characterize the ASICs.
• Create Element Design Specifications (EDS) and Test Performance Specifications (TPS) based on detail ASIC design and chip test/verification.
• Cooperate with IC design partner to develop the ASICs for detection channel of of electron beam inspection tools, including:
• Review the detail schematic and layout design, TPS, and test results from our partner during the ASIC industrialization phase.
• Together with the engineering team from the partners, identify design solutions to achieve the specifications of the module/function. Review the design details and simulation results from our partner.
• Support module level and sub-system level integration
• Generate and / or review related IP documents
Provide with more information about the position: D&E - IC Design Engineer - Tainan/Hsinchu - Jobs | ASML
https://www.asml.com/en/careers/find-your-job/2/4/9/de-ic-design-engineer-tainanhsinchu-req24973
integration test 在 FON KIRURU Youtube 的最讚貼文
วันนี้จะมาทดสอบทำอนิเนมชั่นขนาดเล็กและสั้นๆนะคะ ภาพมันจะเบลอด้วยค่ะ ใช้เวลาทำ 3 วันค่ะและได้ทดลองทั้ง 3 โปรแกรมเอามาทำรวมๆกันตามลำดับนะคะ
Flash CS6 : ใช้ในการร่างภาพเพราะสามารถย้อนดูไปกลับได้และสามารถปรับเปลี่ยนได้ค่ะ และเซฟภาพเป็น JPG และโปรแกรมจะทำการแยกท่าให้อีกทีค่ะ
photoshop CS6 : นำภาพร่างที่ได้มาใส่ต่อๆเป็นภาพเคลื่อนไหว แล้วเริ่มทำการตัดเส้นลงเงาและเทสีค่ะ ตอนตัดเส้นเสร็จต้องใส่เงาก่อนนะคะ ก่อนที่จะแยกเลเยอร์ไปเทสีต่างหากนะคะ และภาพความเร็วช้าที่ต้องการ และเลนเดอร์ให้เป็น MP4 ค่ะ
Adobe After Effects : นำ VDO ที่แปลงจาก PS นำมาใส่เอฟเฟคในโปรแกรม AE ตกแต่งภาพใส่เอฟเฟคค่ะ
สาเหตุที่ภาพเบลอเนื่องจากตัวโปรแกรม photoshop CS6 รับภาพไฟล์ขนาดใหญ่ไม่ได้จึงเซฟไปแล้ว และมีปัญหาไฟล์เสียทันที หลังจากที่เปิดใหม่ก็เลยต้องเริ่มทำใหม่ทั้งแต่ต้น และปรับให้ขนาดเล็กลงเพื่อไม่ให้ไฟล์หายอีก =-=;;;
ขอบคุณที่แวะเวียนมาดูนะคะ ^-^
-----------------------------------
England
Today will come to test animation in the integration of the program.
Takes 3 days to complete. In the following order.
Flash CS6 : Used to create animation. The reason I use it is the easiest to delete and customize. And save as a JPG image. The program will separate the animation for use in other ways.
photoshop CS6 : Used to create animation. The reason I use it is the easiest to delete and customize. And save as a JPG image. The program will separate the animation for use in other way.
Put all the animations and put them in the program in photoshop and set the slow and fast speed as needed. And began to draw black lines along the shadow and pour the color.
Adobe After Effects : Add the completed animation to the program and create an effect on your desired video.
Reasons for moving images not clear Since my program doesn't accept large files, I have to make it smaller. The image is not clear. Sorry, too. =-=;;
Thanks for visiting ^-^
Music used : Aurora_Currents
หากเพื่อนๆชอบอนิเมชั่นของเราก็สามารถสนับสนุนเราได้นะคะ แล้วแต่ใจที่เพื่อนๆอยากให้นะคะ ขอบคุณมากๆเลยค่า!! ^-^
If you like my work, you can support me! Thank you very much!! ^-^
-----------------------
► ช่องทางการโอน Donate ผ่านทาง Wallet TrueMoney
0833058327
-----------------------
(สามารถติดตามผลงานภาพวาดหรืออื่นๆได้ที่นี่นะคะ)
You can follow up on other channels here.
► http://kiruru2592.deviantart.com/
► https://twitter.com/KiruruFon
► https://www.facebook.com/VoningAndKiruru/?view_public_for=1819356651678212
If something goes wrong, I'm sorry and Thank You!!
integration test 在 CarDebuts Youtube 的最讚貼文
Sant’Agata Bolognese, 17 October 2017 – Automobili Lamborghini’s ongoing strategic investment programme, aligned with the launch of its new Super SUV the Urus, sees its production site now doubled with the creation of substantial new facilities and technologies at its factory headquarters in Sant’ Agata Bolognese, Italy.
As well as expanding the site from 80,000 to 160,000 m2, the Urus will also bring about a substantial increase in the company’s production capacity, doubling it to 7,000 units a year.
The new production facility houses a new assembly line dedicated to Urus, the new finishing department for all Lamborghini models, and a new office building with LEED Platinum certification: the highest standard in the world for energy and environmental certification in building design and construction. A new test track has also been built with thirteen different surfaces specific to SUVs, as well as a new logistics warehouse, a second trigeneration power plant, and the new energy hub for centralized production of all the energy carriers.
Ranieri Niccoli, Chief Manufacturing Officer, commented: “With our third model, we wanted to introduce the most innovative production technologies and smart factory concepts, supporting and complementing the activities of our workforce. Urus ushers in a new model of factory, which we call Manifattura Lamborghini, a new point of reference in the luxury automobile industry. The substantial resultant benefits include greater production flexibility, better information accessibility, and the interconnection of systems: strengthening the professionalism of craftsmanship that has always distinguished us and supporting the doubling of our production volumes.”
The creation of new buildings and the installation of innovative technologies involved more than 600 enterprises working on the project with a total of 3,600 external workers.
The factory expansion was completed in a record time of just 18 months, during which the company operated at full production capacity and achieved record sales in 2016 (+7% over the previous year). The project was achieved without neglecting Lamborghini’s commitment to environmental sustainability: the entire production facility in Sant’Agata Bolognese maintains the carbon neutral certification obtained in 2015.
Manifattura Lamborghini
The new Industry 4.0 assembly line, dedicated entirely to the Urus Super SUV, integrates new production technologies to support workers in assembly activities.
The super sports car maker expresses this approach as Manifattura Lamborghini, which is characterized by four basic principles:
Craftsmanship: preserving and optimizing craftsmanship with the integration of innovative technologies, increasing the potential for product customization on one hand, and guaranteeing the highest quality standards on the other.
Competencies and specialization: digitalization enables workers, via touchscreen devices, to access production information made available by easily-consulted interconnected systems.
Production process: AGVs (Automatic Guided Vehicles) are used as vehicle and material transport systems. Thanks to this system, the flexibility of the building layout is maintained.
Ergonomics and safety: collaborative robots assist the workers, to improve ergonomics and for repetitive operations that require high quality, such as window gluing, under-body screwing, and wheel assembly.
integration test 在 Adam Lobo TV Youtube 的精選貼文
The LaMetric Time seems to be the ultimate smart clock to have. It has all all the great social media stats and IFTTT integration but is it worth the money?
Get yours below:-
LaMetric Time
http://amzn.to/2erJk61 (Amazon US & Worldwide)
http://ho.lazada.com.my/SHTCEz (Lazada)
App Tested On:-
Android 7.0 (Samsung Galaxy S7 Edge)
IOS 10.2.1 (Iphone 5s)
App & Device tested with 10mbps Internet connection (Streamyx)
My YouTube Gear 2017: http://bit.ly/2so8Hrr
My Desk Setup 2016:
http://bit.ly/2kn80us
Instagram: https://www.instagram.com/adamlob0/
Twitter: https://twitter.com/adam_lobo
Facebook: www.fb.com/adamlobotv
Snapchat: @adamlob0
Adam Lobo TV: www.adamlobo.tv
Adam Lobo Official Profile Website: www.adamlobo.com
Dragon Red Band Official Website: www.dragonred.com
Fist Of Pain Band Facebook Page: https://www.facebook.com/fistofbandmalaysia/
integration test 在 ManageIQ/integration_tests: ManageIQ integration tests - GitHub 的推薦與評價
ManageIQ integration tests. Contribute to ManageIQ/integration_tests development by creating an account on GitHub. ... <看更多>
integration test 在 Integration Tests — Finatra 21.10.0 documentation 的推薦與評價
TestInjector . You'll then be able to access instances of necessary classes to execute tests. import com.twitter.inject.IntegrationTest ... ... <看更多>
integration test 在 What is an integration test exactly? - Software Engineering ... 的推薦與評價
Integration test : Test communication paths between different parts of the module done by the test department or by developers to show that all modules work ... ... <看更多>
相關內容