Index: Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.TestUtil/Kernels/AssemblyToolKernelFactoryConfig.cs =================================================================== diff -u -r6be8d4073d017fede7f0b8bdcd602b07d56a9e61 -raf2dccd51c7d3ece1434603ea37e8f75cdbb54a2 --- Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.TestUtil/Kernels/AssemblyToolKernelFactoryConfig.cs (.../AssemblyToolKernelFactoryConfig.cs) (revision 6be8d4073d017fede7f0b8bdcd602b07d56a9e61) +++ Ringtoets/AssemblyTool/test/Ringtoets.AssemblyTool.KernelWrapper.TestUtil/Kernels/AssemblyToolKernelFactoryConfig.cs (.../AssemblyToolKernelFactoryConfig.cs) (revision af2dccd51c7d3ece1434603ea37e8f75cdbb54a2) @@ -26,15 +26,15 @@ { /// /// This class can be used to set a temporary - /// for while testing. - /// Disposing an instance of this class will revert the . + /// for while testing. + /// Disposing an instance of this class will revert the . /// /// /// The following is an example for how to use this class: /// /// using(new AssemblyToolKernelFactoryConfig()) /// { - /// var testFactory = (TestAssemblyToolKernelFactory) AssemblyToolKernelWrapperFactory.Instance; + /// var testFactory = (TestAssemblyToolKernelFactory) AssemblyToolKernelFactory.Instance; /// /// // Perform tests with testFactory /// } @@ -47,21 +47,21 @@ /// /// Creates a new instance of . /// Sets a to - /// + /// /// public AssemblyToolKernelFactoryConfig() { - previousFactory = AssemblyToolKernelWrapperFactory.Instance; - AssemblyToolKernelWrapperFactory.Instance = new TestAssemblyToolKernelFactory(); + previousFactory = AssemblyToolKernelFactory.Instance; + AssemblyToolKernelFactory.Instance = new TestAssemblyToolKernelFactory(); } /// - /// Reverts the to the value + /// Reverts the to the value /// it had at time of construction of the . /// public void Dispose() { - AssemblyToolKernelWrapperFactory.Instance = previousFactory; + AssemblyToolKernelFactory.Instance = previousFactory; } } } \ No newline at end of file