《 Test-Driven Development for Embedded C 》心得分享。
TDD(測試驅動開發)是任何開發人員應該掌握的編程實踐,開發者依照需求設計單元測試,然後編寫程式滿足測試,在快速密集的回饋循環中逐漸完善功能,並隨時維持良好的軟體品質。這種開發方式對於物件導向語言陣營的朋友來說應該不陌生,但由於開發環境的特性,使用程序語言的嵌入式平台開發者可能壓根沒聽過或者自認今生無緣。
希望這次交流能為嵌入式平台開發者介紹一些不同於以往的開發方式,打開每個通往敏捷軟體開發的可能。分享內容包含嵌入式TDD原理與策略,單元測試相關工具,如何斷開模組依賴關係,如何得到可測試的設計,以及實務上的建議。
TDD 貌似不難,但在實務上能推行與貫徹的團隊卻是少之又少,甚至被視為是一種不切實際的開發方式。在這次分享中,將搭配 demo 來介紹幾個貫徹 TDD 所需要的重要概念,
包含:
IoC
Unit testing
Web UI testing
BDD
期望讓大家在未來的工作上,也可以透過 TDD 快樂地開發。
by twMVC http://mvc.tw
You can enjoy desktop development with Node.js and HTML5/CSS/WebGL right now. Here we also to announce that Stem project which is a JavaScript operating system, it makes developers be able to make things on embedded system with JavaScript only. There is no need to understand that difficult knowledge about embedded system when you work on Stem OS.
This presentation will give you a fuller understanding of unit testing in Swift, its benefits, key characteristics, mocks and stubs, dependency injection, DI patters and common mistakes one may make throughout the process.
This presentation by Andrii Gavrysh, GlobalLogic expert, was delivered at GlobalLogic Lviv iOS TechTalk on November 16, 2016.
Learn more: https://www.globallogic.com/ua/gl_news/globallogic-lviv-ios-techtalk-summary
Unit Testing Concepts and Best PracticesDerek Smith
?
Unit testing involves writing code to test individual units or components of an application to ensure they perform as expected. The document discusses best practices for unit testing including writing atomic, consistent, self-descriptive tests with clear assertions. Tests should be separated by business module and type and not include conditional logic, loops, or exception handling. Production code should be isolated from test code. The goal of unit testing is to validate that code meets specifications and prevents regressions over time.
Unit testing involves testing individual units or components of code to ensure they work as intended. It focuses on testing small, isolated units of code to check functionality and edge cases. Benefits include faster debugging, development and regression testing. Guidelines for effective unit testing include keeping tests small, automated, independent and focused on the code's public API. Tests should cover a variety of inputs including boundaries and error conditions.
The document discusses unit testing in Java. It introduces the JUnit testing framework and describes unit testing methodology, including how to design testable code, write maintainable tests, and handle indirect inputs and outputs through stubs and mocks. The document provides guidance on test-driven development and testing legacy code. It contrasts unit testing with functional testing and discusses best practices for test granularity, assertions, and fixtures.
You can enjoy desktop development with Node.js and HTML5/CSS/WebGL right now. Here we also to announce that Stem project which is a JavaScript operating system, it makes developers be able to make things on embedded system with JavaScript only. There is no need to understand that difficult knowledge about embedded system when you work on Stem OS.
This presentation will give you a fuller understanding of unit testing in Swift, its benefits, key characteristics, mocks and stubs, dependency injection, DI patters and common mistakes one may make throughout the process.
This presentation by Andrii Gavrysh, GlobalLogic expert, was delivered at GlobalLogic Lviv iOS TechTalk on November 16, 2016.
Learn more: https://www.globallogic.com/ua/gl_news/globallogic-lviv-ios-techtalk-summary
Unit Testing Concepts and Best PracticesDerek Smith
?
Unit testing involves writing code to test individual units or components of an application to ensure they perform as expected. The document discusses best practices for unit testing including writing atomic, consistent, self-descriptive tests with clear assertions. Tests should be separated by business module and type and not include conditional logic, loops, or exception handling. Production code should be isolated from test code. The goal of unit testing is to validate that code meets specifications and prevents regressions over time.
Unit testing involves testing individual units or components of code to ensure they work as intended. It focuses on testing small, isolated units of code to check functionality and edge cases. Benefits include faster debugging, development and regression testing. Guidelines for effective unit testing include keeping tests small, automated, independent and focused on the code's public API. Tests should cover a variety of inputs including boundaries and error conditions.
The document discusses unit testing in Java. It introduces the JUnit testing framework and describes unit testing methodology, including how to design testable code, write maintainable tests, and handle indirect inputs and outputs through stubs and mocks. The document provides guidance on test-driven development and testing legacy code. It contrasts unit testing with functional testing and discusses best practices for test granularity, assertions, and fixtures.
Testing iOS10 Apps with Appium and its new XCUITest backendTestplus GmbH
?
This document discusses testing mobile apps on iOS 10 using Appium and XCUITest. XCUITest is Apple's new UI testing framework that was introduced in iOS 9 and supports iOS 9 and 10. It is based on XCTest and can be used from Objective C or Swift. The document provides an example of how to write a test case and make assertions using XCUITest. It notes that XCUITest is easy to learn but documentation is limited and it only supports iOS 9 and 10. The document also discusses Appium's work to support testing on iOS 10 simulators, including a major rewrite and new plugins.
Unit testing in swift 2 - The before & after storyJorge Ortiz
?
Into unit testing? If so you've probably found yourself in the dark alleys of Swift unit testing. If you haven't yet dabbled in unit testing, this talk will be an awesome opportunity to get started and charge up your unit testing superpowers. I explain three scenarios of unit testing with Swift, and provide us with practical advice for each of them and the implications of the recently introduced version 2 of Swift.
These slides demonstrate how to use protocol-oriented programming in Swift. They contain vast information on classes, implicit sharing, inheritance, lost type relationships, useful pieces of advice and examples of using protocols.
This presentation by Rostyslav Kobyzskyi, GlobalLogic expert, was delivered at GlobalLogic Lviv iOS TechTalk on November 16, 2016.
Learn more: https://www.globallogic.com/ua/gl_news/globallogic-lviv-ios-techtalk-summary
Generating test cases using UML Communication Diagram Praveen Penumathsa
?
1. The document discusses generating test cases from UML communication diagrams. It presents an approach to construct a communication tree from the diagram and then iteratively select predicates from the tree to generate test data and record test cases.
2. Key classes used in the implementation include XmlBoundary to accept diagrams, DocumentParser to parse diagrams into a communication tree, TestDataFinder to generate test data from the tree, and TestCaseBoundary to display test cases.
3. The technique aims to automatically generate test cases for object-oriented programs based on an intermediate graph representation using UML diagrams, and implement the algorithms in Java.
This document outlines the 7 stages of unit testing: 1) Shock & Disbelief, 2) Denial, 3) Anger, 4) Bargain, 5) Guilt, 6) Depression, 7) Acceptance & Hope. It provides examples of different types of unit tests like testing return values, state changes, and behaviors using stubs, mocks and dependency injection. It also discusses improving test quality by following rules, prioritizing coverage, and measuring it, as well as integrating other test types and using CI/CD as developers progress through the stages towards acceptance of unit testing.
Make testing easier and more productive by applying test-driven development strategies to the world of iOS and Objective-C. Join us to learn about the tools that are available, and hear strategies for writing more testable code and robust tests. You'll be ready to take the next step and integrate these strategies into your daily workflow.
The 3h workshop version of the 3d Advanced Architectures training (http://canonicalexamples.com/courses_ios/#iOSArch). I have delivered this one or the Android counterpart in more than 20 cities in Europe and America. This is version that I shared in Cluj Napoca.
The document discusses best practices for unit testing, including:
1. Tests should follow a 3 step structure of prepare input, call method, check output. They should be fast, consistent, atomic, and have single responsibility.
2. Tests should isolate the environment, classes, and test instances to avoid dependencies. Mocking is recommended for environment isolation.
3. The best practices aim to make tests independent, fast, and easy to maintain through techniques like mocking and separating test logic from production code.
Unit Testing & TDD Training for Mobile AppsMarcelo Busico
?
- The document provides an agenda and overview for a training on unit testing and test-driven development for iOS and Android native apps.
- It covers unit testing concepts like the definition of a unit test, test properties, test structure for different platforms, naming conventions, verification types, and using test doubles.
- Test-driven development is explained as a process of writing tests before code to drive the design. The core TDD process involves adding a test, seeing it fail, writing minimum code to pass the test, and refactoring.
- Guidelines for object-oriented design that facilitates testing are presented, including dependency injection, single responsibility principle, loose coupling, and favoring composition over inheritance.
This document provides guidance on developing a connected device solution for a coffee cup called the Connected Cup using WSO2 IoT Server. It describes developing a device agent to display data on the cup, device APIs for communication, UI extensions, analytics processing, a device plugin, and a Carbon feature. Code samples and links are provided for each aspect including getting started with the Connected Cup sample.
透過簡單的攻擊範例,說明四種常見的 SQL Injection (Union Based Injection、Error Based Injection、Boolean Based Blind Injection、Time Based Blind Injection),並介紹一款常用的工具 sqlmap。
Introduction of Continuous Integration (CI)
* Try to answer questions from developers, testers, team leaders, and managers.
* The topology and features of CI.
* How can CI reduce risks?
The document discusses Linux networking architecture and covers several key topics in 3 paragraphs or less:
It first describes the basic structure and layers of the Linux networking stack including the network device interface, network layer protocols like IP, transport layer, and sockets. It then discusses how network packets are managed in Linux through the use of socket buffers and associated functions. The document also provides an overview of the data link layer and protocols like Ethernet, PPP, and how they are implemented in Linux.
15. 參考資料
? How to write unit tests in Swift with XCTest?
http://road?resoftware.com/2014/06/unit-testing-
with-swift/
? Test Driven Development?
http://devmonologue.com/ios/category/test-driven-
development/
? TDD for iOS in Swift – What’s the Goal??
http://www.andrewcbancroft.com/2014/12/16/tdd-
ios-swift-whats-goal/