Change test naming in sparse_normal_cholesky_solver_test Change-Id: I384a7bdbeb9b7ada5e6d272671ce389d4066a31c
diff --git a/internal/ceres/sparse_normal_cholesky_solver_test.cc b/internal/ceres/sparse_normal_cholesky_solver_test.cc index 2546c16..ec59897 100644 --- a/internal/ceres/sparse_normal_cholesky_solver_test.cc +++ b/internal/ceres/sparse_normal_cholesky_solver_test.cc
@@ -50,7 +50,7 @@ // So the test should exercise the composition, rather than the // numerics of the solver, which are well covered by tests for those // classes. -class SparseNormalCholeskyLinearSolverTest : public ::testing::Test { +class SparseNormalCholeskySolverTest : public ::testing::Test { protected: virtual void SetUp() { scoped_ptr<LinearLeastSquaresProblem> problem( @@ -106,7 +106,7 @@ }; #ifndef CERES_NO_SUITESPARSE -TEST_F(SparseNormalCholeskyLinearSolverTest, +TEST_F(SparseNormalCholeskySolverTest, SparseNormalCholeskyUsingSuiteSparsePreOrdering) { LinearSolver::Options options; options.sparse_linear_algebra_library_type = SUITE_SPARSE; @@ -115,7 +115,7 @@ TestSolver(options); } -TEST_F(SparseNormalCholeskyLinearSolverTest, +TEST_F(SparseNormalCholeskySolverTest, SparseNormalCholeskyUsingSuiteSparsePostOrdering) { LinearSolver::Options options; options.sparse_linear_algebra_library_type = SUITE_SPARSE; @@ -126,7 +126,7 @@ #endif #ifndef CERES_NO_CXSPARSE -TEST_F(SparseNormalCholeskyLinearSolverTest, +TEST_F(SparseNormalCholeskySolverTest, SparseNormalCholeskyUsingCXSparsePreOrdering) { LinearSolver::Options options; options.sparse_linear_algebra_library_type = CX_SPARSE; @@ -135,7 +135,7 @@ TestSolver(options); } -TEST_F(SparseNormalCholeskyLinearSolverTest, +TEST_F(SparseNormalCholeskySolverTest, SparseNormalCholeskyUsingCXSparsePostOrdering) { LinearSolver::Options options; options.sparse_linear_algebra_library_type = CX_SPARSE; @@ -146,7 +146,7 @@ #endif #ifdef CERES_USE_EIGEN_SPARSE -TEST_F(SparseNormalCholeskyLinearSolverTest, +TEST_F(SparseNormalCholeskySolverTest, SparseNormalCholeskyUsingEigenPreOrdering) { LinearSolver::Options options; options.sparse_linear_algebra_library_type = EIGEN_SPARSE; @@ -155,7 +155,7 @@ TestSolver(options); } -TEST_F(SparseNormalCholeskyLinearSolverTest, +TEST_F(SparseNormalCholeskySolverTest, SparseNormalCholeskyUsingEigenPostOrdering) { LinearSolver::Options options; options.sparse_linear_algebra_library_type = EIGEN_SPARSE;