1 / 6

Sensing & Separation

Sensing & Separation. Feathers Ch 3 Steve Chenoweth, RHIT. How to break dependencies. Sensing – Break dependencies in order to sense, whenever we can’t access values our code computes.

etoile
Télécharger la présentation

Sensing & Separation

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Sensing & Separation Feathers Ch 3 Steve Chenoweth, RHIT

  2. How to break dependencies • Sensing – Break dependencies in order to sense, whenever we can’t access values our code computes. • Separation – Break dependencies to separate when we can’t even get a piece of code into a test harness to run. Right – You can’t test the sled unless the dogs are in the harness! Q10

  3. E.g., public class NetworkBridge { public NetworkBridge(EndPoint [] endpoints) { … } public void formRouting(String sourceID, String destID) { … } … } How do we write tests for this? What if the hardware is not available? This is the “sensing and separation” problem.

  4. So, we Fake collaborators • Like the “Mock Objects” you studied in 376: • A mock object is a fake object in the system that decides whether the unit test has passed or failed. • In general, a “Fake Object” impersonates some collaborator of your class, when your class is being tested.

  5. Fake Tests are Real Tests • May not show everything, but • We try to get close! • We hope for small, well-understood pieces. Right – Is the chocolate working for you? How about the berries? Q11

  6. Example import junit.framework.*; public class SaleTest extends TestCase { public void testDisplayItem() { FakeDisplay display = new FakeDisplay(); Sale sale = new Sale(display); sale.scan(“1”); assertEquals(“Milk $3.99”, display.getLastLine3()); } }

More Related