public class Singleton {
  // Private constructor prevents instantiation from other classes
  private Singleton() {}
...

Java Laisy Singleton patern

by jumar, July 13, 2010 02:31, No refactoring, tagged with java, singleton, patern

There is a very important g...

B6948c9d003a997fa34de0acda190ef5 Talk
using System.Collections.Generic;
using Microsoft.VisualStudio.TestTools.UnitTesting;

...

C# Testing the Singleton Pattern

by Brandon Joyce, February 09, 2009 17:31, 5 refactorings, tagged with singleton, TDD, pattern

I am doing a step by step e...

Dc45352908dbb9a4c9299c1ffe84ebf2 Talk
require 'erb'

# GOAL: render the template with the following vars
...

Ruby Given a hash of variables, ...

by mislav, April 12, 2008 15:12, 6 refactorings, tagged with hash, metaprogramming, erb, singleton, metaclass, render

This works. Now, is there a...

8f93a872e399bc1353cc8d4e791d5401 Talk