সিঙ্গেলটন পরীক্ষার দৃষ্টিকোণ থেকে ভাল পদ্ধতির। স্ট্যাটিক ক্লাসগুলির থেকে আলাদা, সিঙ্গলটন ইন্টারফেস প্রয়োগ করতে পারে এবং আপনি মক উদাহরণটি ব্যবহার করতে পারেন এবং সেগুলি ইনজেক্ট করতে পারেন।
নীচের উদাহরণে আমি এটি চিত্রিত করব। ধরুন আপনার কাছে একটি পদ্ধতি রয়েছে গুডপ্রাইস () যা একটি পদ্ধতি getPrice () ব্যবহার করে এবং আপনি getPrice () সিঙ্গেলনে একটি পদ্ধতি হিসাবে প্রয়োগ করেন।
সিঙ্গেলটন যা getPrice কার্যকারিতা সরবরাহ করে:
public class SupportedVersionSingelton {
private static ICalculator instance = null;
private SupportedVersionSingelton(){
}
public static ICalculator getInstance(){
if(instance == null){
instance = new SupportedVersionSingelton();
}
return instance;
}
@Override
public int getPrice() {
// calculate price logic here
return 0;
}
}
গেটপ্রেস ব্যবহার:
public class Advisor {
public boolean isGoodDeal(){
boolean isGoodDeal = false;
ICalculator supportedVersion = SupportedVersionSingelton.getInstance();
int price = supportedVersion.getPrice();
// logic to determine if price is a good deal.
if(price < 5){
isGoodDeal = true;
}
return isGoodDeal;
}
}
In case you would like to test the method isGoodPrice , with mocking the getPrice() method you could do it by:
Make your singleton implement an interface and inject it.
public interface ICalculator {
int getPrice();
}
চূড়ান্ত একক বাস্তবায়ন:
public class SupportedVersionSingelton implements ICalculator {
private static ICalculator instance = null;
private SupportedVersionSingelton(){
}
public static ICalculator getInstance(){
if(instance == null){
instance = new SupportedVersionSingelton();
}
return instance;
}
@Override
public int getPrice() {
return 0;
}
// for testing purpose
public static void setInstance(ICalculator mockObject){
if(instance != null ){
instance = mockObject;
}
পরীক্ষা ক্লাস:
public class TestCalculation {
class SupportedVersionDouble implements ICalculator{
@Override
public int getPrice() {
return 1;
}
}
@Before
public void setUp() throws Exception {
ICalculator supportedVersionDouble = new SupportedVersionDouble();
SupportedVersionSingelton.setInstance(supportedVersionDouble);
}
@Test
public void test() {
Advisor advidor = new Advisor();
boolean isGoodDeal = advidor.isGoodDeal();
Assert.assertEquals(isGoodDeal, true);
}
}
যদি আমরা getPrice () প্রয়োগের জন্য স্থিতিশীল পদ্ধতি ব্যবহারের বিকল্প গ্রহণ করি তবে এটি মক getPrice () এর পক্ষে কঠিন ছিল। আপনি পাওয়ার মোকের সাহায্যে স্থিতিকে বিদ্রূপ করতে পারেন, তবুও সমস্ত পণ্য এটি ব্যবহার করতে পারে না।
getInstance()
(যদিও বেশিরভাগ ক্ষেত্রে এটি কোনও ব্যাপার নয় )।