├── Makefile ├── MakefileCppUTest.mk ├── MakefileUnity.mk ├── README.md ├── include ├── HomeAutomation │ ├── LightController.h │ ├── LightScheduler.h │ └── TimeService.h ├── IO │ ├── Flash.h │ ├── IO.h │ ├── MicroTime.h │ └── m28w160ect.h ├── LedDriver │ └── LedDriver.h ├── dvr │ └── DvRecorder.h ├── util │ ├── CircularBuffer.h │ ├── RuntimeError.h │ ├── Utils.h │ └── common.h └── zune │ └── RtcTime.h ├── lib └── libSandBox_CppUTest.a ├── mocks ├── FakeMicroTime.c ├── FakeMicroTime.h ├── FakeMicroTimeTest.cpp ├── FormatOutputSpy.c ├── FormatOutputSpy.h ├── FormatOutputSpyTest.cpp ├── MockIO.c ├── MockIO.h ├── MockIOTest.cpp ├── RuntimeErrorStub.c ├── RuntimeErrorStub.h └── cmock │ ├── MockIO.c │ └── MockIO.h ├── src ├── HomeAutomation │ └── LightScheduler.c ├── IO │ ├── Flash.c │ └── IO.c ├── LedDriver │ └── LedDriver.c ├── dvr │ └── DvRecorder.c ├── util │ ├── CircularBuffer.c │ └── Utils.c └── zune │ └── RtcTime.c ├── t0 ├── .cproject ├── .project ├── Makefile ├── include │ ├── HomeAutomation │ │ ├── LightController.h │ │ ├── LightScheduler.h │ │ └── RandomMinute.h │ └── util │ │ ├── TimeService.h │ │ └── common.h ├── mocks │ ├── FakeRandomMinute.c │ ├── FakeRandomMinute.h │ ├── FakeTimeService.c │ ├── FakeTimeService.h │ ├── FakeTimeServiceTest.cpp │ ├── LightControllerSpy.c │ ├── LightControllerSpy.h │ └── LightControllerTestSpy.cpp ├── src │ ├── HomeAutomation │ │ ├── LightScheduler.c │ │ └── RandomMinute.c │ └── ProductionCodeLib.dsp ├── t0.dsw ├── t0_tests.dSYM │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ └── DWARF │ │ └── t0_tests ├── tests │ ├── AllTests.cpp │ ├── AllTests_CppUTest.dsp │ └── HomeAutomation │ │ ├── LightSchedulerRandomizeTest.cpp │ │ ├── LightSchedulerTest.cpp │ │ └── RandomMinuteTest.cpp └── unity │ └── HomeAutomation │ ├── LightSchedulerTest.c │ └── LightSchedulerTest_runner.c ├── t1 ├── .cproject ├── .project ├── Makefile ├── include │ ├── HomeAutomation │ │ ├── LightController.h │ │ ├── LightScheduler.h │ │ └── RandomMinute.h │ ├── IO │ │ ├── Flash.h │ │ ├── IO.h │ │ ├── MicroTime.h │ │ └── m28w160ect.h │ ├── MyOS │ │ ├── MyOsPrivate.h │ │ └── Thread.h │ ├── devices │ │ ├── AcmeWirelessLightDriver.h │ │ ├── LightDriver.h │ │ ├── MemMappedLightDriver.h │ │ └── X10LightDriver.h │ └── util │ │ ├── TimeService.h │ │ └── common.h ├── mocks │ ├── FakeRandomMinute.c │ ├── FakeRandomMinute.h │ ├── FakeTimeService.c │ ├── FakeTimeService.h │ ├── FakeTimeServiceTest.cpp │ ├── IO │ │ ├── FakeMicroTime.c │ │ ├── FakeMicroTime.h │ │ └── FakeMicroTimeTest.cpp │ ├── LightDriverSpy.c │ ├── LightDriverSpy.h │ └── LightDriverSpyTest.cpp ├── src │ ├── HomeAutomation │ │ ├── LightController.c │ │ ├── LightScheduler.c │ │ └── RandomMinute.c │ ├── IO │ │ ├── Flash.c │ │ └── IO.c │ ├── MyOS │ │ ├── Acme │ │ │ ├── AcmeOs.c │ │ │ ├── AcmeOs.h │ │ │ └── Thread.c │ │ ├── MyOsHelpers.c │ │ ├── Win32 │ │ │ └── Thread.c │ │ └── posix │ │ │ └── Thread.c │ ├── ProductionCodeLib.dsp │ ├── devices │ │ ├── AcmeWirelessLightDriver.c │ │ ├── MemMappedLightDriver.c │ │ └── X10LightDriver.c │ └── util │ │ ├── TimeService.c │ │ ├── TimeService_Helpers.c │ │ └── common.c ├── t1.dsw └── tests │ ├── AllTests.cpp │ ├── AllTests_CppUTest.dsp │ ├── HomeAutomation │ ├── LightControllerTest.cpp │ ├── LightSchedulerRandomizeTest.cpp │ ├── LightSchedulerTest.cpp │ └── RandomMinuteTest.cpp │ ├── IO │ └── FlashTest.cpp │ ├── MyOS │ └── ThreadTest.cpp │ ├── devices │ ├── AcmeWirelessLightDriverTest.cpp │ ├── MemMappedLightDriverTest.cpp │ └── X10LightDriverTest.cpp │ └── util │ └── TimeServiceHelpersTest.cpp ├── t2 ├── .cproject ├── .project ├── Makefile ├── include │ ├── HomeAutomation │ │ ├── LightController.h │ │ ├── LightScheduler.h │ │ └── RandomMinute.h │ ├── devices │ │ ├── AcmeWirelessLightDriver.h │ │ ├── LightDriver.h │ │ ├── LightDriverPrivate.h │ │ ├── MemMappedLightDriver.h │ │ └── X10LightDriver.h │ └── util │ │ ├── TimeService.h │ │ └── common.h ├── mocks │ ├── FakeRandomMinute.c │ ├── FakeRandomMinute.h │ ├── FakeTimeService.c │ ├── FakeTimeService.h │ ├── FakeTimeServiceTest.cpp │ ├── LightDriverSpy.c │ ├── LightDriverSpy.h │ └── LightDriverSpyTest.cpp ├── src │ ├── HomeAutomation │ │ ├── LightController.c │ │ ├── LightScheduler.c │ │ └── RandomMinute.c │ ├── ProductionCodeLib.dsp │ ├── devices │ │ ├── AcmeWirelessLightDriver.c │ │ ├── LightDriver.c │ │ ├── MemMappedLightDriver.c │ │ └── X10LightDriver.c │ └── util │ │ ├── Time.c │ │ ├── TimeService.c │ │ └── common.c ├── t2.dsw └── tests │ ├── AllTests.cpp │ ├── AllTests_CppUTest.dsp │ ├── HomeAutomation │ ├── LightControllerTest.cpp │ ├── LightSchedulerRandomizeTest.cpp │ ├── LightSchedulerTest.cpp │ └── RandomMinuteTest.cpp │ ├── devices │ ├── AcmeWirelessLightDriverTest.cpp │ ├── LightDriverTest.cpp │ ├── MemMappedLightDriverTest.cpp │ └── X10LightDriverTest.cpp │ └── util │ └── TimeTest.cpp ├── t3 ├── .cproject ├── .project ├── Makefile ├── include │ ├── HomeAutomation │ │ ├── LightController.h │ │ ├── LightScheduler.h │ │ └── RandomMinute.h │ ├── devices │ │ ├── AcmeWirelessLightDriver.h │ │ ├── LightDriver.h │ │ ├── LightDriverPrivate.h │ │ ├── MemMappedLightDriver.h │ │ └── X10LightDriver.h │ └── util │ │ ├── TimeService.h │ │ ├── TimeService_Helpers.h │ │ └── common.h ├── mocks │ ├── CountingLightDriver.c │ ├── CountingLightDriver.h │ ├── FakeRandomMinute.c │ ├── FakeRandomMinute.h │ ├── FakeTimeService.c │ ├── FakeTimeService.h │ ├── FakeTimeServiceTest.cpp │ ├── LightDriverSpy.c │ ├── LightDriverSpy.h │ └── LightDriverSpyTest.cpp ├── src │ ├── ApplicationLib.dsp │ ├── HomeAutomation │ │ ├── LightController.c │ │ ├── LightScheduler.c │ │ └── RandomMinute.c │ ├── ProductionCodeLib.dsp │ ├── devices │ │ ├── AcmeWirelessLightDriver.c │ │ ├── LightDriver.c │ │ ├── MemMappedLightDriver.c │ │ └── X10LightDriver.c │ └── util │ │ ├── Time.c │ │ ├── TimeService.c │ │ ├── TimeService_Helpers.c │ │ └── common.c ├── t3.dsw └── tests │ ├── AllTests.cpp │ ├── AllTests.dsp │ ├── AllTests_CppUTest.dsp │ ├── HomeAutomation │ ├── LightControllerTest.cpp │ ├── LightSchedulerRandomizeTest.cpp │ ├── LightSchedulerTest.cpp │ └── RandomMinuteTest.cpp │ ├── devices │ ├── AcmeWirelessLightDriverTest.cpp │ ├── LightDriverTest.cpp │ ├── MemMappedLightDriverTest.cpp │ └── X10LightDriverTest.cpp │ └── util │ └── TimeTest.cpp ├── tests ├── AllTests.cpp ├── HomeAutomation │ ├── FakeTimeService.c │ ├── FakeTimeService.h │ ├── FakeTimeServiceTest.cpp │ ├── LightControllerSpy.c │ ├── LightControllerSpy.h │ ├── LightControllerSpyTest.cpp │ └── LightSchedulerTest.cpp ├── IO │ ├── FlashTest.cpp │ └── LegacyFlashTest.cpp ├── LedDriver │ └── LedDriverTest.cpp ├── dvr │ └── DvRecorderTest.cpp ├── util │ ├── CircularBufferPrintTest.cpp │ └── CircularBufferTest.cpp └── zune │ └── RtcTimeTest.cpp ├── unity.framework ├── auto │ ├── colour_prompt.rb │ ├── colour_reporter.rb │ ├── generate_config.yml │ ├── generate_module.rb │ ├── generate_test_runner.rb │ ├── test_file_filter.rb │ └── unity_test_summary.rb ├── docs │ ├── Unity Summary.odt │ ├── Unity Summary.pdf │ ├── Unity Summary.txt │ └── license.txt ├── examples │ ├── helper │ │ ├── UnityHelper.c │ │ └── UnityHelper.h │ ├── makefile │ ├── rakefile.rb │ ├── rakefile_helper.rb │ ├── readme.txt │ ├── src │ │ ├── ProductionCode.c │ │ ├── ProductionCode.h │ │ ├── ProductionCode2.c │ │ └── ProductionCode2.h │ └── test │ │ ├── TestProductionCode.c │ │ ├── TestProductionCode2.c │ │ └── no_ruby │ │ ├── TestProductionCode2_Runner.c │ │ └── TestProductionCode_Runner.c ├── extras │ └── fixture │ │ ├── build │ │ ├── MakefileWorker.mk │ │ └── filterGcov.sh │ │ ├── rakefile.rb │ │ ├── rakefile_helper.rb │ │ ├── readme.txt │ │ ├── src │ │ ├── unity_fixture.c │ │ ├── unity_fixture.h │ │ ├── unity_fixture_internals.h │ │ └── unity_fixture_malloc_overrides.h │ │ └── test │ │ ├── main │ │ └── AllTests.c │ │ ├── testunity_fixture.c │ │ ├── unity_fixture_Test.c │ │ ├── unity_fixture_TestRunner.c │ │ ├── unity_output_Spy.c │ │ └── unity_output_Spy.h ├── makefile ├── rakefile.rb ├── rakefile_helper.rb ├── release │ ├── build.info │ └── version.info ├── src │ ├── unity.c │ ├── unity.h │ └── unity_internals.h ├── targets │ ├── gcc.yml │ ├── gcc_64.yml │ ├── hitech_picc18.yml │ ├── iar_arm_v4.yml │ ├── iar_arm_v5.yml │ ├── iar_cortexm3_v5.yml │ └── iar_msp430.yml └── test │ ├── expectdata │ ├── testsample_cmd.c │ ├── testsample_def.c │ ├── testsample_mock_cmd.c │ ├── testsample_mock_def.c │ ├── testsample_mock_new1.c │ ├── testsample_mock_new2.c │ ├── testsample_mock_param.c │ ├── testsample_mock_run1.c │ ├── testsample_mock_run2.c │ ├── testsample_mock_yaml.c │ ├── testsample_new1.c │ ├── testsample_new2.c │ ├── testsample_param.c │ ├── testsample_run1.c │ ├── testsample_run2.c │ └── testsample_yaml.c │ ├── test_generate_test_runner.rb │ ├── testdata │ ├── mocksample.c │ ├── sample.yml │ └── testsample.c │ ├── testparameterized.c │ └── testunity.c └── unity ├── AllTests.c ├── LedDriver ├── LedDriverTest.c └── LedDriverTestRunner.c └── mocks ├── RuntimeErrorStub.c └── RuntimeErrorStub.h /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/Makefile -------------------------------------------------------------------------------- /MakefileCppUTest.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/MakefileCppUTest.mk -------------------------------------------------------------------------------- /MakefileUnity.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/MakefileUnity.mk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/README.md -------------------------------------------------------------------------------- /include/HomeAutomation/LightController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/include/HomeAutomation/LightController.h -------------------------------------------------------------------------------- /include/HomeAutomation/LightScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/include/HomeAutomation/LightScheduler.h -------------------------------------------------------------------------------- /include/HomeAutomation/TimeService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/include/HomeAutomation/TimeService.h -------------------------------------------------------------------------------- /include/IO/Flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/include/IO/Flash.h -------------------------------------------------------------------------------- /include/IO/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/include/IO/IO.h -------------------------------------------------------------------------------- /include/IO/MicroTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/include/IO/MicroTime.h -------------------------------------------------------------------------------- /include/IO/m28w160ect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/include/IO/m28w160ect.h -------------------------------------------------------------------------------- /include/LedDriver/LedDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/include/LedDriver/LedDriver.h -------------------------------------------------------------------------------- /include/dvr/DvRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/include/dvr/DvRecorder.h -------------------------------------------------------------------------------- /include/util/CircularBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/include/util/CircularBuffer.h -------------------------------------------------------------------------------- /include/util/RuntimeError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/include/util/RuntimeError.h -------------------------------------------------------------------------------- /include/util/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/include/util/Utils.h -------------------------------------------------------------------------------- /include/util/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/include/util/common.h -------------------------------------------------------------------------------- /include/zune/RtcTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/include/zune/RtcTime.h -------------------------------------------------------------------------------- /lib/libSandBox_CppUTest.a: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /mocks/FakeMicroTime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/mocks/FakeMicroTime.c -------------------------------------------------------------------------------- /mocks/FakeMicroTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/mocks/FakeMicroTime.h -------------------------------------------------------------------------------- /mocks/FakeMicroTimeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/mocks/FakeMicroTimeTest.cpp -------------------------------------------------------------------------------- /mocks/FormatOutputSpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/mocks/FormatOutputSpy.c -------------------------------------------------------------------------------- /mocks/FormatOutputSpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/mocks/FormatOutputSpy.h -------------------------------------------------------------------------------- /mocks/FormatOutputSpyTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/mocks/FormatOutputSpyTest.cpp -------------------------------------------------------------------------------- /mocks/MockIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/mocks/MockIO.c -------------------------------------------------------------------------------- /mocks/MockIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/mocks/MockIO.h -------------------------------------------------------------------------------- /mocks/MockIOTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/mocks/MockIOTest.cpp -------------------------------------------------------------------------------- /mocks/RuntimeErrorStub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/mocks/RuntimeErrorStub.c -------------------------------------------------------------------------------- /mocks/RuntimeErrorStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/mocks/RuntimeErrorStub.h -------------------------------------------------------------------------------- /mocks/cmock/MockIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/mocks/cmock/MockIO.c -------------------------------------------------------------------------------- /mocks/cmock/MockIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/mocks/cmock/MockIO.h -------------------------------------------------------------------------------- /src/HomeAutomation/LightScheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/src/HomeAutomation/LightScheduler.c -------------------------------------------------------------------------------- /src/IO/Flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/src/IO/Flash.c -------------------------------------------------------------------------------- /src/IO/IO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/src/IO/IO.c -------------------------------------------------------------------------------- /src/LedDriver/LedDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/src/LedDriver/LedDriver.c -------------------------------------------------------------------------------- /src/dvr/DvRecorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/src/dvr/DvRecorder.c -------------------------------------------------------------------------------- /src/util/CircularBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/src/util/CircularBuffer.c -------------------------------------------------------------------------------- /src/util/Utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/src/util/Utils.c -------------------------------------------------------------------------------- /src/zune/RtcTime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/src/zune/RtcTime.c -------------------------------------------------------------------------------- /t0/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t0/.cproject -------------------------------------------------------------------------------- /t0/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t0/.project -------------------------------------------------------------------------------- /t0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t0/Makefile -------------------------------------------------------------------------------- /t0/include/HomeAutomation/LightController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t0/include/HomeAutomation/LightController.h -------------------------------------------------------------------------------- /t0/include/HomeAutomation/LightScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t0/include/HomeAutomation/LightScheduler.h -------------------------------------------------------------------------------- /t0/include/HomeAutomation/RandomMinute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t0/include/HomeAutomation/RandomMinute.h -------------------------------------------------------------------------------- /t0/include/util/TimeService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t0/include/util/TimeService.h -------------------------------------------------------------------------------- /t0/include/util/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t0/include/util/common.h -------------------------------------------------------------------------------- /t0/mocks/FakeRandomMinute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t0/mocks/FakeRandomMinute.c -------------------------------------------------------------------------------- /t0/mocks/FakeRandomMinute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t0/mocks/FakeRandomMinute.h -------------------------------------------------------------------------------- /t0/mocks/FakeTimeService.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t0/mocks/FakeTimeService.c -------------------------------------------------------------------------------- /t0/mocks/FakeTimeService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t0/mocks/FakeTimeService.h -------------------------------------------------------------------------------- /t0/mocks/FakeTimeServiceTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t0/mocks/FakeTimeServiceTest.cpp -------------------------------------------------------------------------------- /t0/mocks/LightControllerSpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t0/mocks/LightControllerSpy.c -------------------------------------------------------------------------------- /t0/mocks/LightControllerSpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t0/mocks/LightControllerSpy.h -------------------------------------------------------------------------------- /t0/mocks/LightControllerTestSpy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t0/mocks/LightControllerTestSpy.cpp -------------------------------------------------------------------------------- /t0/src/HomeAutomation/LightScheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t0/src/HomeAutomation/LightScheduler.c -------------------------------------------------------------------------------- /t0/src/HomeAutomation/RandomMinute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t0/src/HomeAutomation/RandomMinute.c -------------------------------------------------------------------------------- /t0/src/ProductionCodeLib.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t0/src/ProductionCodeLib.dsp -------------------------------------------------------------------------------- /t0/t0.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t0/t0.dsw -------------------------------------------------------------------------------- /t0/t0_tests.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t0/t0_tests.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /t0/t0_tests.dSYM/Contents/Resources/DWARF/t0_tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t0/t0_tests.dSYM/Contents/Resources/DWARF/t0_tests -------------------------------------------------------------------------------- /t0/tests/AllTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t0/tests/AllTests.cpp -------------------------------------------------------------------------------- /t0/tests/AllTests_CppUTest.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t0/tests/AllTests_CppUTest.dsp -------------------------------------------------------------------------------- /t0/tests/HomeAutomation/LightSchedulerRandomizeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t0/tests/HomeAutomation/LightSchedulerRandomizeTest.cpp -------------------------------------------------------------------------------- /t0/tests/HomeAutomation/LightSchedulerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t0/tests/HomeAutomation/LightSchedulerTest.cpp -------------------------------------------------------------------------------- /t0/tests/HomeAutomation/RandomMinuteTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t0/tests/HomeAutomation/RandomMinuteTest.cpp -------------------------------------------------------------------------------- /t0/unity/HomeAutomation/LightSchedulerTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t0/unity/HomeAutomation/LightSchedulerTest.c -------------------------------------------------------------------------------- /t0/unity/HomeAutomation/LightSchedulerTest_runner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t0/unity/HomeAutomation/LightSchedulerTest_runner.c -------------------------------------------------------------------------------- /t1/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/.cproject -------------------------------------------------------------------------------- /t1/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/.project -------------------------------------------------------------------------------- /t1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/Makefile -------------------------------------------------------------------------------- /t1/include/HomeAutomation/LightController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/include/HomeAutomation/LightController.h -------------------------------------------------------------------------------- /t1/include/HomeAutomation/LightScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/include/HomeAutomation/LightScheduler.h -------------------------------------------------------------------------------- /t1/include/HomeAutomation/RandomMinute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/include/HomeAutomation/RandomMinute.h -------------------------------------------------------------------------------- /t1/include/IO/Flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/include/IO/Flash.h -------------------------------------------------------------------------------- /t1/include/IO/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/include/IO/IO.h -------------------------------------------------------------------------------- /t1/include/IO/MicroTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/include/IO/MicroTime.h -------------------------------------------------------------------------------- /t1/include/IO/m28w160ect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/include/IO/m28w160ect.h -------------------------------------------------------------------------------- /t1/include/MyOS/MyOsPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/include/MyOS/MyOsPrivate.h -------------------------------------------------------------------------------- /t1/include/MyOS/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/include/MyOS/Thread.h -------------------------------------------------------------------------------- /t1/include/devices/AcmeWirelessLightDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/include/devices/AcmeWirelessLightDriver.h -------------------------------------------------------------------------------- /t1/include/devices/LightDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/include/devices/LightDriver.h -------------------------------------------------------------------------------- /t1/include/devices/MemMappedLightDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/include/devices/MemMappedLightDriver.h -------------------------------------------------------------------------------- /t1/include/devices/X10LightDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/include/devices/X10LightDriver.h -------------------------------------------------------------------------------- /t1/include/util/TimeService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/include/util/TimeService.h -------------------------------------------------------------------------------- /t1/include/util/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/include/util/common.h -------------------------------------------------------------------------------- /t1/mocks/FakeRandomMinute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/mocks/FakeRandomMinute.c -------------------------------------------------------------------------------- /t1/mocks/FakeRandomMinute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/mocks/FakeRandomMinute.h -------------------------------------------------------------------------------- /t1/mocks/FakeTimeService.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/mocks/FakeTimeService.c -------------------------------------------------------------------------------- /t1/mocks/FakeTimeService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/mocks/FakeTimeService.h -------------------------------------------------------------------------------- /t1/mocks/FakeTimeServiceTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/mocks/FakeTimeServiceTest.cpp -------------------------------------------------------------------------------- /t1/mocks/IO/FakeMicroTime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/mocks/IO/FakeMicroTime.c -------------------------------------------------------------------------------- /t1/mocks/IO/FakeMicroTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/mocks/IO/FakeMicroTime.h -------------------------------------------------------------------------------- /t1/mocks/IO/FakeMicroTimeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/mocks/IO/FakeMicroTimeTest.cpp -------------------------------------------------------------------------------- /t1/mocks/LightDriverSpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/mocks/LightDriverSpy.c -------------------------------------------------------------------------------- /t1/mocks/LightDriverSpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/mocks/LightDriverSpy.h -------------------------------------------------------------------------------- /t1/mocks/LightDriverSpyTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/mocks/LightDriverSpyTest.cpp -------------------------------------------------------------------------------- /t1/src/HomeAutomation/LightController.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/src/HomeAutomation/LightController.c -------------------------------------------------------------------------------- /t1/src/HomeAutomation/LightScheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/src/HomeAutomation/LightScheduler.c -------------------------------------------------------------------------------- /t1/src/HomeAutomation/RandomMinute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/src/HomeAutomation/RandomMinute.c -------------------------------------------------------------------------------- /t1/src/IO/Flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/src/IO/Flash.c -------------------------------------------------------------------------------- /t1/src/IO/IO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/src/IO/IO.c -------------------------------------------------------------------------------- /t1/src/MyOS/Acme/AcmeOs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/src/MyOS/Acme/AcmeOs.c -------------------------------------------------------------------------------- /t1/src/MyOS/Acme/AcmeOs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/src/MyOS/Acme/AcmeOs.h -------------------------------------------------------------------------------- /t1/src/MyOS/Acme/Thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/src/MyOS/Acme/Thread.c -------------------------------------------------------------------------------- /t1/src/MyOS/MyOsHelpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/src/MyOS/MyOsHelpers.c -------------------------------------------------------------------------------- /t1/src/MyOS/Win32/Thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/src/MyOS/Win32/Thread.c -------------------------------------------------------------------------------- /t1/src/MyOS/posix/Thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/src/MyOS/posix/Thread.c -------------------------------------------------------------------------------- /t1/src/ProductionCodeLib.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/src/ProductionCodeLib.dsp -------------------------------------------------------------------------------- /t1/src/devices/AcmeWirelessLightDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/src/devices/AcmeWirelessLightDriver.c -------------------------------------------------------------------------------- /t1/src/devices/MemMappedLightDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/src/devices/MemMappedLightDriver.c -------------------------------------------------------------------------------- /t1/src/devices/X10LightDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/src/devices/X10LightDriver.c -------------------------------------------------------------------------------- /t1/src/util/TimeService.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/src/util/TimeService.c -------------------------------------------------------------------------------- /t1/src/util/TimeService_Helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/src/util/TimeService_Helpers.c -------------------------------------------------------------------------------- /t1/src/util/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/src/util/common.c -------------------------------------------------------------------------------- /t1/t1.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/t1.dsw -------------------------------------------------------------------------------- /t1/tests/AllTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/tests/AllTests.cpp -------------------------------------------------------------------------------- /t1/tests/AllTests_CppUTest.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/tests/AllTests_CppUTest.dsp -------------------------------------------------------------------------------- /t1/tests/HomeAutomation/LightControllerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/tests/HomeAutomation/LightControllerTest.cpp -------------------------------------------------------------------------------- /t1/tests/HomeAutomation/LightSchedulerRandomizeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/tests/HomeAutomation/LightSchedulerRandomizeTest.cpp -------------------------------------------------------------------------------- /t1/tests/HomeAutomation/LightSchedulerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/tests/HomeAutomation/LightSchedulerTest.cpp -------------------------------------------------------------------------------- /t1/tests/HomeAutomation/RandomMinuteTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/tests/HomeAutomation/RandomMinuteTest.cpp -------------------------------------------------------------------------------- /t1/tests/IO/FlashTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/tests/IO/FlashTest.cpp -------------------------------------------------------------------------------- /t1/tests/MyOS/ThreadTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/tests/MyOS/ThreadTest.cpp -------------------------------------------------------------------------------- /t1/tests/devices/AcmeWirelessLightDriverTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/tests/devices/AcmeWirelessLightDriverTest.cpp -------------------------------------------------------------------------------- /t1/tests/devices/MemMappedLightDriverTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/tests/devices/MemMappedLightDriverTest.cpp -------------------------------------------------------------------------------- /t1/tests/devices/X10LightDriverTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/tests/devices/X10LightDriverTest.cpp -------------------------------------------------------------------------------- /t1/tests/util/TimeServiceHelpersTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t1/tests/util/TimeServiceHelpersTest.cpp -------------------------------------------------------------------------------- /t2/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/.cproject -------------------------------------------------------------------------------- /t2/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/.project -------------------------------------------------------------------------------- /t2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/Makefile -------------------------------------------------------------------------------- /t2/include/HomeAutomation/LightController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/include/HomeAutomation/LightController.h -------------------------------------------------------------------------------- /t2/include/HomeAutomation/LightScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/include/HomeAutomation/LightScheduler.h -------------------------------------------------------------------------------- /t2/include/HomeAutomation/RandomMinute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/include/HomeAutomation/RandomMinute.h -------------------------------------------------------------------------------- /t2/include/devices/AcmeWirelessLightDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/include/devices/AcmeWirelessLightDriver.h -------------------------------------------------------------------------------- /t2/include/devices/LightDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/include/devices/LightDriver.h -------------------------------------------------------------------------------- /t2/include/devices/LightDriverPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/include/devices/LightDriverPrivate.h -------------------------------------------------------------------------------- /t2/include/devices/MemMappedLightDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/include/devices/MemMappedLightDriver.h -------------------------------------------------------------------------------- /t2/include/devices/X10LightDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/include/devices/X10LightDriver.h -------------------------------------------------------------------------------- /t2/include/util/TimeService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/include/util/TimeService.h -------------------------------------------------------------------------------- /t2/include/util/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/include/util/common.h -------------------------------------------------------------------------------- /t2/mocks/FakeRandomMinute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/mocks/FakeRandomMinute.c -------------------------------------------------------------------------------- /t2/mocks/FakeRandomMinute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/mocks/FakeRandomMinute.h -------------------------------------------------------------------------------- /t2/mocks/FakeTimeService.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/mocks/FakeTimeService.c -------------------------------------------------------------------------------- /t2/mocks/FakeTimeService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/mocks/FakeTimeService.h -------------------------------------------------------------------------------- /t2/mocks/FakeTimeServiceTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/mocks/FakeTimeServiceTest.cpp -------------------------------------------------------------------------------- /t2/mocks/LightDriverSpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/mocks/LightDriverSpy.c -------------------------------------------------------------------------------- /t2/mocks/LightDriverSpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/mocks/LightDriverSpy.h -------------------------------------------------------------------------------- /t2/mocks/LightDriverSpyTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/mocks/LightDriverSpyTest.cpp -------------------------------------------------------------------------------- /t2/src/HomeAutomation/LightController.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/src/HomeAutomation/LightController.c -------------------------------------------------------------------------------- /t2/src/HomeAutomation/LightScheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/src/HomeAutomation/LightScheduler.c -------------------------------------------------------------------------------- /t2/src/HomeAutomation/RandomMinute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/src/HomeAutomation/RandomMinute.c -------------------------------------------------------------------------------- /t2/src/ProductionCodeLib.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/src/ProductionCodeLib.dsp -------------------------------------------------------------------------------- /t2/src/devices/AcmeWirelessLightDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/src/devices/AcmeWirelessLightDriver.c -------------------------------------------------------------------------------- /t2/src/devices/LightDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/src/devices/LightDriver.c -------------------------------------------------------------------------------- /t2/src/devices/MemMappedLightDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/src/devices/MemMappedLightDriver.c -------------------------------------------------------------------------------- /t2/src/devices/X10LightDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/src/devices/X10LightDriver.c -------------------------------------------------------------------------------- /t2/src/util/Time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/src/util/Time.c -------------------------------------------------------------------------------- /t2/src/util/TimeService.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/src/util/TimeService.c -------------------------------------------------------------------------------- /t2/src/util/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/src/util/common.c -------------------------------------------------------------------------------- /t2/t2.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/t2.dsw -------------------------------------------------------------------------------- /t2/tests/AllTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/tests/AllTests.cpp -------------------------------------------------------------------------------- /t2/tests/AllTests_CppUTest.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/tests/AllTests_CppUTest.dsp -------------------------------------------------------------------------------- /t2/tests/HomeAutomation/LightControllerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/tests/HomeAutomation/LightControllerTest.cpp -------------------------------------------------------------------------------- /t2/tests/HomeAutomation/LightSchedulerRandomizeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/tests/HomeAutomation/LightSchedulerRandomizeTest.cpp -------------------------------------------------------------------------------- /t2/tests/HomeAutomation/LightSchedulerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/tests/HomeAutomation/LightSchedulerTest.cpp -------------------------------------------------------------------------------- /t2/tests/HomeAutomation/RandomMinuteTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/tests/HomeAutomation/RandomMinuteTest.cpp -------------------------------------------------------------------------------- /t2/tests/devices/AcmeWirelessLightDriverTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/tests/devices/AcmeWirelessLightDriverTest.cpp -------------------------------------------------------------------------------- /t2/tests/devices/LightDriverTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/tests/devices/LightDriverTest.cpp -------------------------------------------------------------------------------- /t2/tests/devices/MemMappedLightDriverTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/tests/devices/MemMappedLightDriverTest.cpp -------------------------------------------------------------------------------- /t2/tests/devices/X10LightDriverTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/tests/devices/X10LightDriverTest.cpp -------------------------------------------------------------------------------- /t2/tests/util/TimeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t2/tests/util/TimeTest.cpp -------------------------------------------------------------------------------- /t3/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/.cproject -------------------------------------------------------------------------------- /t3/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/.project -------------------------------------------------------------------------------- /t3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/Makefile -------------------------------------------------------------------------------- /t3/include/HomeAutomation/LightController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/include/HomeAutomation/LightController.h -------------------------------------------------------------------------------- /t3/include/HomeAutomation/LightScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/include/HomeAutomation/LightScheduler.h -------------------------------------------------------------------------------- /t3/include/HomeAutomation/RandomMinute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/include/HomeAutomation/RandomMinute.h -------------------------------------------------------------------------------- /t3/include/devices/AcmeWirelessLightDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/include/devices/AcmeWirelessLightDriver.h -------------------------------------------------------------------------------- /t3/include/devices/LightDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/include/devices/LightDriver.h -------------------------------------------------------------------------------- /t3/include/devices/LightDriverPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/include/devices/LightDriverPrivate.h -------------------------------------------------------------------------------- /t3/include/devices/MemMappedLightDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/include/devices/MemMappedLightDriver.h -------------------------------------------------------------------------------- /t3/include/devices/X10LightDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/include/devices/X10LightDriver.h -------------------------------------------------------------------------------- /t3/include/util/TimeService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/include/util/TimeService.h -------------------------------------------------------------------------------- /t3/include/util/TimeService_Helpers.h: -------------------------------------------------------------------------------- 1 | BOOL TimeService_MatchesNow(int reactionDay, int minute); -------------------------------------------------------------------------------- /t3/include/util/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/include/util/common.h -------------------------------------------------------------------------------- /t3/mocks/CountingLightDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/mocks/CountingLightDriver.c -------------------------------------------------------------------------------- /t3/mocks/CountingLightDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/mocks/CountingLightDriver.h -------------------------------------------------------------------------------- /t3/mocks/FakeRandomMinute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/mocks/FakeRandomMinute.c -------------------------------------------------------------------------------- /t3/mocks/FakeRandomMinute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/mocks/FakeRandomMinute.h -------------------------------------------------------------------------------- /t3/mocks/FakeTimeService.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/mocks/FakeTimeService.c -------------------------------------------------------------------------------- /t3/mocks/FakeTimeService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/mocks/FakeTimeService.h -------------------------------------------------------------------------------- /t3/mocks/FakeTimeServiceTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/mocks/FakeTimeServiceTest.cpp -------------------------------------------------------------------------------- /t3/mocks/LightDriverSpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/mocks/LightDriverSpy.c -------------------------------------------------------------------------------- /t3/mocks/LightDriverSpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/mocks/LightDriverSpy.h -------------------------------------------------------------------------------- /t3/mocks/LightDriverSpyTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/mocks/LightDriverSpyTest.cpp -------------------------------------------------------------------------------- /t3/src/ApplicationLib.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/src/ApplicationLib.dsp -------------------------------------------------------------------------------- /t3/src/HomeAutomation/LightController.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/src/HomeAutomation/LightController.c -------------------------------------------------------------------------------- /t3/src/HomeAutomation/LightScheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/src/HomeAutomation/LightScheduler.c -------------------------------------------------------------------------------- /t3/src/HomeAutomation/RandomMinute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/src/HomeAutomation/RandomMinute.c -------------------------------------------------------------------------------- /t3/src/ProductionCodeLib.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/src/ProductionCodeLib.dsp -------------------------------------------------------------------------------- /t3/src/devices/AcmeWirelessLightDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/src/devices/AcmeWirelessLightDriver.c -------------------------------------------------------------------------------- /t3/src/devices/LightDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/src/devices/LightDriver.c -------------------------------------------------------------------------------- /t3/src/devices/MemMappedLightDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/src/devices/MemMappedLightDriver.c -------------------------------------------------------------------------------- /t3/src/devices/X10LightDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/src/devices/X10LightDriver.c -------------------------------------------------------------------------------- /t3/src/util/Time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/src/util/Time.c -------------------------------------------------------------------------------- /t3/src/util/TimeService.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/src/util/TimeService.c -------------------------------------------------------------------------------- /t3/src/util/TimeService_Helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/src/util/TimeService_Helpers.c -------------------------------------------------------------------------------- /t3/src/util/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/src/util/common.c -------------------------------------------------------------------------------- /t3/t3.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/t3.dsw -------------------------------------------------------------------------------- /t3/tests/AllTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/tests/AllTests.cpp -------------------------------------------------------------------------------- /t3/tests/AllTests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/tests/AllTests.dsp -------------------------------------------------------------------------------- /t3/tests/AllTests_CppUTest.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/tests/AllTests_CppUTest.dsp -------------------------------------------------------------------------------- /t3/tests/HomeAutomation/LightControllerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/tests/HomeAutomation/LightControllerTest.cpp -------------------------------------------------------------------------------- /t3/tests/HomeAutomation/LightSchedulerRandomizeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/tests/HomeAutomation/LightSchedulerRandomizeTest.cpp -------------------------------------------------------------------------------- /t3/tests/HomeAutomation/LightSchedulerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/tests/HomeAutomation/LightSchedulerTest.cpp -------------------------------------------------------------------------------- /t3/tests/HomeAutomation/RandomMinuteTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/tests/HomeAutomation/RandomMinuteTest.cpp -------------------------------------------------------------------------------- /t3/tests/devices/AcmeWirelessLightDriverTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/tests/devices/AcmeWirelessLightDriverTest.cpp -------------------------------------------------------------------------------- /t3/tests/devices/LightDriverTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/tests/devices/LightDriverTest.cpp -------------------------------------------------------------------------------- /t3/tests/devices/MemMappedLightDriverTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/tests/devices/MemMappedLightDriverTest.cpp -------------------------------------------------------------------------------- /t3/tests/devices/X10LightDriverTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/tests/devices/X10LightDriverTest.cpp -------------------------------------------------------------------------------- /t3/tests/util/TimeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/t3/tests/util/TimeTest.cpp -------------------------------------------------------------------------------- /tests/AllTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/tests/AllTests.cpp -------------------------------------------------------------------------------- /tests/HomeAutomation/FakeTimeService.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/tests/HomeAutomation/FakeTimeService.c -------------------------------------------------------------------------------- /tests/HomeAutomation/FakeTimeService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/tests/HomeAutomation/FakeTimeService.h -------------------------------------------------------------------------------- /tests/HomeAutomation/FakeTimeServiceTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/tests/HomeAutomation/FakeTimeServiceTest.cpp -------------------------------------------------------------------------------- /tests/HomeAutomation/LightControllerSpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/tests/HomeAutomation/LightControllerSpy.c -------------------------------------------------------------------------------- /tests/HomeAutomation/LightControllerSpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/tests/HomeAutomation/LightControllerSpy.h -------------------------------------------------------------------------------- /tests/HomeAutomation/LightControllerSpyTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/tests/HomeAutomation/LightControllerSpyTest.cpp -------------------------------------------------------------------------------- /tests/HomeAutomation/LightSchedulerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/tests/HomeAutomation/LightSchedulerTest.cpp -------------------------------------------------------------------------------- /tests/IO/FlashTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/tests/IO/FlashTest.cpp -------------------------------------------------------------------------------- /tests/IO/LegacyFlashTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/tests/IO/LegacyFlashTest.cpp -------------------------------------------------------------------------------- /tests/LedDriver/LedDriverTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/tests/LedDriver/LedDriverTest.cpp -------------------------------------------------------------------------------- /tests/dvr/DvRecorderTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/tests/dvr/DvRecorderTest.cpp -------------------------------------------------------------------------------- /tests/util/CircularBufferPrintTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/tests/util/CircularBufferPrintTest.cpp -------------------------------------------------------------------------------- /tests/util/CircularBufferTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/tests/util/CircularBufferTest.cpp -------------------------------------------------------------------------------- /tests/zune/RtcTimeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/tests/zune/RtcTimeTest.cpp -------------------------------------------------------------------------------- /unity.framework/auto/colour_prompt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/auto/colour_prompt.rb -------------------------------------------------------------------------------- /unity.framework/auto/colour_reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/auto/colour_reporter.rb -------------------------------------------------------------------------------- /unity.framework/auto/generate_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/auto/generate_config.yml -------------------------------------------------------------------------------- /unity.framework/auto/generate_module.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/auto/generate_module.rb -------------------------------------------------------------------------------- /unity.framework/auto/generate_test_runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/auto/generate_test_runner.rb -------------------------------------------------------------------------------- /unity.framework/auto/test_file_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/auto/test_file_filter.rb -------------------------------------------------------------------------------- /unity.framework/auto/unity_test_summary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/auto/unity_test_summary.rb -------------------------------------------------------------------------------- /unity.framework/docs/Unity Summary.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/docs/Unity Summary.odt -------------------------------------------------------------------------------- /unity.framework/docs/Unity Summary.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/docs/Unity Summary.pdf -------------------------------------------------------------------------------- /unity.framework/docs/Unity Summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/docs/Unity Summary.txt -------------------------------------------------------------------------------- /unity.framework/docs/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/docs/license.txt -------------------------------------------------------------------------------- /unity.framework/examples/helper/UnityHelper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/examples/helper/UnityHelper.c -------------------------------------------------------------------------------- /unity.framework/examples/helper/UnityHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/examples/helper/UnityHelper.h -------------------------------------------------------------------------------- /unity.framework/examples/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/examples/makefile -------------------------------------------------------------------------------- /unity.framework/examples/rakefile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/examples/rakefile.rb -------------------------------------------------------------------------------- /unity.framework/examples/rakefile_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/examples/rakefile_helper.rb -------------------------------------------------------------------------------- /unity.framework/examples/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/examples/readme.txt -------------------------------------------------------------------------------- /unity.framework/examples/src/ProductionCode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/examples/src/ProductionCode.c -------------------------------------------------------------------------------- /unity.framework/examples/src/ProductionCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/examples/src/ProductionCode.h -------------------------------------------------------------------------------- /unity.framework/examples/src/ProductionCode2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/examples/src/ProductionCode2.c -------------------------------------------------------------------------------- /unity.framework/examples/src/ProductionCode2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/examples/src/ProductionCode2.h -------------------------------------------------------------------------------- /unity.framework/examples/test/TestProductionCode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/examples/test/TestProductionCode.c -------------------------------------------------------------------------------- /unity.framework/examples/test/TestProductionCode2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/examples/test/TestProductionCode2.c -------------------------------------------------------------------------------- /unity.framework/examples/test/no_ruby/TestProductionCode2_Runner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/examples/test/no_ruby/TestProductionCode2_Runner.c -------------------------------------------------------------------------------- /unity.framework/examples/test/no_ruby/TestProductionCode_Runner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/examples/test/no_ruby/TestProductionCode_Runner.c -------------------------------------------------------------------------------- /unity.framework/extras/fixture/build/MakefileWorker.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/extras/fixture/build/MakefileWorker.mk -------------------------------------------------------------------------------- /unity.framework/extras/fixture/build/filterGcov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/extras/fixture/build/filterGcov.sh -------------------------------------------------------------------------------- /unity.framework/extras/fixture/rakefile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/extras/fixture/rakefile.rb -------------------------------------------------------------------------------- /unity.framework/extras/fixture/rakefile_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/extras/fixture/rakefile_helper.rb -------------------------------------------------------------------------------- /unity.framework/extras/fixture/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/extras/fixture/readme.txt -------------------------------------------------------------------------------- /unity.framework/extras/fixture/src/unity_fixture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/extras/fixture/src/unity_fixture.c -------------------------------------------------------------------------------- /unity.framework/extras/fixture/src/unity_fixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/extras/fixture/src/unity_fixture.h -------------------------------------------------------------------------------- /unity.framework/extras/fixture/src/unity_fixture_internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/extras/fixture/src/unity_fixture_internals.h -------------------------------------------------------------------------------- /unity.framework/extras/fixture/src/unity_fixture_malloc_overrides.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/extras/fixture/src/unity_fixture_malloc_overrides.h -------------------------------------------------------------------------------- /unity.framework/extras/fixture/test/main/AllTests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/extras/fixture/test/main/AllTests.c -------------------------------------------------------------------------------- /unity.framework/extras/fixture/test/testunity_fixture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/extras/fixture/test/testunity_fixture.c -------------------------------------------------------------------------------- /unity.framework/extras/fixture/test/unity_fixture_Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/extras/fixture/test/unity_fixture_Test.c -------------------------------------------------------------------------------- /unity.framework/extras/fixture/test/unity_fixture_TestRunner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/extras/fixture/test/unity_fixture_TestRunner.c -------------------------------------------------------------------------------- /unity.framework/extras/fixture/test/unity_output_Spy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/extras/fixture/test/unity_output_Spy.c -------------------------------------------------------------------------------- /unity.framework/extras/fixture/test/unity_output_Spy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/extras/fixture/test/unity_output_Spy.h -------------------------------------------------------------------------------- /unity.framework/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/makefile -------------------------------------------------------------------------------- /unity.framework/rakefile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/rakefile.rb -------------------------------------------------------------------------------- /unity.framework/rakefile_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/rakefile_helper.rb -------------------------------------------------------------------------------- /unity.framework/release/build.info: -------------------------------------------------------------------------------- 1 | 110 -------------------------------------------------------------------------------- /unity.framework/release/version.info: -------------------------------------------------------------------------------- 1 | 2.0 -------------------------------------------------------------------------------- /unity.framework/src/unity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/src/unity.c -------------------------------------------------------------------------------- /unity.framework/src/unity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/src/unity.h -------------------------------------------------------------------------------- /unity.framework/src/unity_internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/src/unity_internals.h -------------------------------------------------------------------------------- /unity.framework/targets/gcc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/targets/gcc.yml -------------------------------------------------------------------------------- /unity.framework/targets/gcc_64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/targets/gcc_64.yml -------------------------------------------------------------------------------- /unity.framework/targets/hitech_picc18.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/targets/hitech_picc18.yml -------------------------------------------------------------------------------- /unity.framework/targets/iar_arm_v4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/targets/iar_arm_v4.yml -------------------------------------------------------------------------------- /unity.framework/targets/iar_arm_v5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/targets/iar_arm_v5.yml -------------------------------------------------------------------------------- /unity.framework/targets/iar_cortexm3_v5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/targets/iar_cortexm3_v5.yml -------------------------------------------------------------------------------- /unity.framework/targets/iar_msp430.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/targets/iar_msp430.yml -------------------------------------------------------------------------------- /unity.framework/test/expectdata/testsample_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/test/expectdata/testsample_cmd.c -------------------------------------------------------------------------------- /unity.framework/test/expectdata/testsample_def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/test/expectdata/testsample_def.c -------------------------------------------------------------------------------- /unity.framework/test/expectdata/testsample_mock_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/test/expectdata/testsample_mock_cmd.c -------------------------------------------------------------------------------- /unity.framework/test/expectdata/testsample_mock_def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/test/expectdata/testsample_mock_def.c -------------------------------------------------------------------------------- /unity.framework/test/expectdata/testsample_mock_new1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/test/expectdata/testsample_mock_new1.c -------------------------------------------------------------------------------- /unity.framework/test/expectdata/testsample_mock_new2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/test/expectdata/testsample_mock_new2.c -------------------------------------------------------------------------------- /unity.framework/test/expectdata/testsample_mock_param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/test/expectdata/testsample_mock_param.c -------------------------------------------------------------------------------- /unity.framework/test/expectdata/testsample_mock_run1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/test/expectdata/testsample_mock_run1.c -------------------------------------------------------------------------------- /unity.framework/test/expectdata/testsample_mock_run2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/test/expectdata/testsample_mock_run2.c -------------------------------------------------------------------------------- /unity.framework/test/expectdata/testsample_mock_yaml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/test/expectdata/testsample_mock_yaml.c -------------------------------------------------------------------------------- /unity.framework/test/expectdata/testsample_new1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/test/expectdata/testsample_new1.c -------------------------------------------------------------------------------- /unity.framework/test/expectdata/testsample_new2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/test/expectdata/testsample_new2.c -------------------------------------------------------------------------------- /unity.framework/test/expectdata/testsample_param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/test/expectdata/testsample_param.c -------------------------------------------------------------------------------- /unity.framework/test/expectdata/testsample_run1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/test/expectdata/testsample_run1.c -------------------------------------------------------------------------------- /unity.framework/test/expectdata/testsample_run2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/test/expectdata/testsample_run2.c -------------------------------------------------------------------------------- /unity.framework/test/expectdata/testsample_yaml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/test/expectdata/testsample_yaml.c -------------------------------------------------------------------------------- /unity.framework/test/test_generate_test_runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/test/test_generate_test_runner.rb -------------------------------------------------------------------------------- /unity.framework/test/testdata/mocksample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/test/testdata/mocksample.c -------------------------------------------------------------------------------- /unity.framework/test/testdata/sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/test/testdata/sample.yml -------------------------------------------------------------------------------- /unity.framework/test/testdata/testsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/test/testdata/testsample.c -------------------------------------------------------------------------------- /unity.framework/test/testparameterized.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/test/testparameterized.c -------------------------------------------------------------------------------- /unity.framework/test/testunity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity.framework/test/testunity.c -------------------------------------------------------------------------------- /unity/AllTests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity/AllTests.c -------------------------------------------------------------------------------- /unity/LedDriver/LedDriverTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity/LedDriver/LedDriverTest.c -------------------------------------------------------------------------------- /unity/LedDriver/LedDriverTestRunner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity/LedDriver/LedDriverTestRunner.c -------------------------------------------------------------------------------- /unity/mocks/RuntimeErrorStub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity/mocks/RuntimeErrorStub.c -------------------------------------------------------------------------------- /unity/mocks/RuntimeErrorStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mozilla88/tddcode/HEAD/unity/mocks/RuntimeErrorStub.h --------------------------------------------------------------------------------