Prechádzať zdrojové kódy

:octocat: +coverage

codemasher 6 rokov pred
rodič
commit
3095c0f819
1 zmenil súbory, kde vykonal 13 pridanie a 0 odobranie
  1. 13 0
      tests/Output/QRImagickTest.php

+ 13 - 0
tests/Output/QRImagickTest.php

@@ -39,4 +39,17 @@ class QRImagickTest extends QROutputTestAbstract{
 		$this->assertSame($img, file_get_contents($this::cachefile.$type));
 		$this->assertSame($img, file_get_contents($this::cachefile.$type));
 	}
 	}
 
 
+	public function testSetModuleValues(){
+
+		$this->options->moduleValues = [
+			// data
+			1024 => '#4A6000',
+			4    => '#ECF9BE',
+		];
+
+		$this->setOutputInterface()->dump();
+
+		$this->assertTrue(true); // tricking the code coverage
+	}
+
 }
 }