• Home
  • Raw
  • Download

Lines Matching full:unity

1 # Unity - Getting Started
10 Unity is a unit test framework.
12 The core Unity test framework is three files: a single C file and a couple header files.
15 Unity was designed to be cross-platform.
17 Unity has been used with many compilers, including GCC, IAR, Clang, Green Hills, Microchip, and MS …
22 #### Unity Assertions reference
24 This document will guide you through all the assertion options provided by Unity.
26 You'll spend more time with assertions than any other part of Unity.
28 #### Unity Assertions Cheat Sheet
31 It's perfect for printing and referencing while you familiarize yourself with Unity's options.
33 #### Unity Configuration Guide
35 This document is the one to reference when you are going to use Unity with a new target or compiler.
38 #### Unity Helper Scripts
41 It describes the collection of optional Ruby scripts included in the auto directory of your Unity i…
42 Neither Ruby nor these scripts are necessary for using Unity.
45 #### Unity License
53 If you have obtained Unity through Github or something similar, you might be surprised by just how …
54 Don't worry, Unity itself is very small.
60 These three files _are_ Unity.
63 - `examples` - This contains a few examples of using Unity.
64 - `extras` - These are optional add ons to Unity that are not part of the core project.
66 - `test` - This is how Unity and its scripts are all tested.
67 If you're just using Unity, you'll likely never need to go in here.
68 …If you are the lucky team member who gets to port Unity to a new toolchain, this is a good place t…
70 They are purely optional and are not required to make use of Unity.
76 The test file should include unity.h and the header for your C module to be tested.
92 Also, the automated scripts that come with Unity or Ceedling will default to looking for test funct…
93 …functions take no arguments and return nothing. All test accounting is handled internally in Unity.
107 #include "unity.h"
181 A pair of macros support this functionality in Unity.
234 In either case, a test is built by linking unity, the test file, and the C file(s) being tested.