Consider the following method:
/**
* Set whether messages are printed to System.out. *
* @param printOutput True to print, false for silent logging
*/
public void setPrintOutput(boolean printOutput) {
// Synchronize to messages because this field is used when a message is received
synchronized (messages) {
this.printOutput = printOutput;
}
}
This method is part of a set of several methods that involve messages, so I want to write a test that checks that this method is synchronized on messages. Does anyone know how I would do this?