क्रिश्चियन के जवाब पर, मेरे ज्ञान के सर्वश्रेष्ठ के लिए, शब्द सीम की उत्पत्ति पंख की पुस्तक, वर्किंग इफेक्टिवली विथ लिगेसी कोड से हुई है । परिभाषा 31 पृष्ठ पर है:
सीम एक ऐसी जगह है जहां आप उस स्थान पर संपादन के बिना अपने कार्यक्रम में व्यवहार को बदल सकते हैं।
सीम क्या है और क्या नहीं है, इसके उदाहरण देने के लिए, निम्नलिखित जावा कोड पर विचार करें:
public class MyClass {
private final Foo foo;
public MyClass(Foo foo) {
this.foo = foo;
}
public void doBunchOfStuff(BarFactory barFactory) {
// foo.doStuff() is a seam because I can inject a mock instance of Foo
this.foo.doStuff();
// barFactory.makeBars() is a seam because I can replace the default
// BarFactory instance with something else during testing
List<Bar> bars = barFactory.makeBars();
for(Bar bar : bars) {
// bar.cut() is also a seam because if I can mock out BarFactory, then
// I can get the mocked BarFactory to return mocked Bars.
bar.cut();
}
// MyStaticClass.staticCall() is not a seam because I cannot replace
// staticCall() with different behavior without calling a class besides
// MyStaticClass, or changing the code in MyStaticClass.
MyStaticClass.staticCall();
// This is not a seam either because I can't change the behavior of what
// happens when instanceCall() occurs with out changing this method or
// the code in instanceCall().
(new MyInstanceClass()).instanceCall();
}
}
जब तक ऊपर उदाहरण दिए गए हैं, तब तक सीम होंगे:
- इंजेक्ट किया जा रहा वर्ग अंतिम है।
- कहा जा रहा विधि अंतिम है।
मूल रूप से, सीम इकाई परीक्षण की सुविधा प्रदान करते हैं। मैं नहीं करने के लिए एक इकाई परीक्षण लिख सकते हैं MyClass
क्योंकि आने वाले कॉल की MyStaticClass.staticCall()
और (new MyInstanceClass()).instanceCall()
। के लिए किसी भी इकाई परीक्षण MyClass
की doBunchOfStuff()
विधि परीक्षण करने के लिए होगा MyStaticClass.staticCall()
और (new MyInstanceClass()).instanceCall()
और सब है कि कहा जाता हो उनकी निर्भरता की। इसके विपरीत, गैर-अंतिम वर्गों के साथ गैर-अंतिम तरीकों (या बेहतर अभी तक - इंटरफेस) का उपयोग करके, मॉकिंग को सुविधाजनक बनाने के द्वारा लिखने के लिए संभव के इंजेक्शन उदाहरण Foo
और BarFactory
इकाई परीक्षण करें MyClass
।