I have class and builder for it.
Builder would be used only in test code and I would like not to have it in production code.
My class:
public class MyClassThatIWantBuilderFor {
// many fields that I want initialize using builder instead of 10 arg constructor
}
My test case:
public class MyTest {
// I want to have builder for MyClassThatIWantBuilderFor class here
}
How to achieve it in auto-value?