Commit ff30c408 authored by Canek Peláez's avatar Canek Peláez
Browse files

TestCae: Use protected constructor.

parent 288c2c95
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@ namespace MLM.Test {
         * Creates a new test case with a given name.
         * @param name the name of the test case.
         */
        public TestCase(string name) {
        protected TestCase(string name) {
            this.suite = new GLib.TestSuite(name);
        }