Lines Matching +full:runner +full:- +full:before +full:- +full:script
1 # Unity - Getting Started
14 Unity was designed to be cross-platform. It works hard to stick with C standards
69 - `src` - This is the code you care about! This folder contains a C file and two
71 - `docs` - You're reading this document, so it's possible you have found your way
74 - `examples` - This contains a few examples of using Unity.
75 - `extras` - These are optional add ons to Unity that are not part of the core
78 - `test` - This is how Unity and its scripts are all tested. If you're just using
82 - `auto` - Here you will find helpful Ruby scripts for simplifying your test
93 function can contain anything you would like to run before each test. The
98 If you're using Ceedling or the test runner generator script, you may leave these off
118 of our handy [generate_test_runner.rb](../auto/generate_test_runner.rb) script.
159 When writing your own `main()` functions, for a test-runner. There are two ways
170 These macros perform the necessary setup before the test is called and
228 - On hardware, you have too many constraints (processing power, memory, etc),
229 - On hardware, you don't have complete control over all registers,
230 - On hardware, unit testing is more challenging,
231 - Unit testing isn't System testing. Keep them separate.