public class SharedBufferTest { public static void main(String[] args) { // TODO Auto-generated method stub Buffer sharedLocation = new UnsynchronizedBuffer(); Producer producer = new Producer( sharedLocation); Consumer consumer = new Consumer( sharedLocation); producer.start(); consumer.start(); } }