Giter Site home page Giter Site logo

test-contexts-example's Introduction

Test Contexts

This is an example repo to accompany my Test Contexts blog post.

The example repo shows methods to define test contexts for languages that do not typically use spec libraries.

C# - NUnit / XUnit

Create a class for a test context, and refine it with a nested subclass. Be sure to declare the nested subclass as public, and each constructor as public. C#'s inheritance rules allow private methods to be accessed by nested classes, so use this to your advantage. A parent's accessible no-args constructor will be called before a subclasses, this allows a context to further refine what was defined by a parent.

Java - Junit

Create a class for a test context, and refine it with a nested subclass. Be sure to declare the nested subclass as public static and each constructor as public. Java's inheritance rules allow protected methods to be accessed by subclasses, so use this to your advantage. Each constructor will act to refine the current context, and will be executed after it's parents. The constructor acts similarly a typical @Before method in JUnit, but adds one important thing. A parent's public accessible no-args constructor will be called before a subclasses, this allows a context to further refine what was defined by a parent.

test-contexts-example's People

Contributors

samjonester avatar

Watchers

Todd Kaufman avatar Justin Searls avatar James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.