Feature: Labelprint für Kistenetiketten hinzugefügt

This commit is contained in:
2025-10-27 12:14:44 +01:00
parent 43bc416554
commit 14bae6c9ef
1068 changed files with 229014 additions and 1807 deletions

View File

@@ -0,0 +1,117 @@
<?php
/**
* UpcETest.php
*
* @since 2015-02-21
* @category Library
* @package Barcode
* @author Nicola Asuni <info@tecnick.com>
* @copyright 2015-2024 Nicola Asuni - Tecnick.com LTD
* @license http://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE.TXT)
* @link https://github.com/tecnickcom/tc-lib-barcode
*
* This file is part of tc-lib-barcode software library.
*/
namespace Test\Linear;
use Test\TestUtil;
/**
* Barcode class test
*
* @since 2015-02-21
* @category Library
* @package Barcode
* @author Nicola Asuni <info@tecnick.com>
* @copyright 2015-2024 Nicola Asuni - Tecnick.com LTD
* @license http://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE.TXT)
* @link https://github.com/tecnickcom/tc-lib-barcode
*/
class UpcETest extends TestUtil
{
protected function getTestObject(): \Com\Tecnick\Barcode\Barcode
{
return new \Com\Tecnick\Barcode\Barcode();
}
public function testGetGrid(): void
{
$barcode = $this->getTestObject();
$bobj = $barcode->getBarcodeObj('UPCE', '725270');
$grid = $bobj->getGrid();
$expected = "101001000100100110110001001101101110110100111010101\n";
$this->assertEquals($expected, $grid);
$bobj = $barcode->getBarcodeObj('UPCE', '725271');
$grid = $bobj->getGrid();
$expected = "101001000100100110111001001001101110110110011010101\n";
$this->assertEquals($expected, $grid);
$bobj = $barcode->getBarcodeObj('UPCE', '725272');
$grid = $bobj->getGrid();
$expected = "101001000100100110111001001001100100010010011010101\n";
$this->assertEquals($expected, $grid);
$bobj = $barcode->getBarcodeObj('UPCE', '725273');
$grid = $bobj->getGrid();
$expected = "101001000100100110110001001101101110110100001010101\n";
$this->assertEquals($expected, $grid);
$bobj = $barcode->getBarcodeObj('UPCE', '725274');
$grid = $bobj->getGrid();
$expected = "101001000100100110110001001101100100010100011010101\n";
$this->assertEquals($expected, $grid);
$bobj = $barcode->getBarcodeObj('UPCE', '725275');
$grid = $bobj->getGrid();
$expected = "101001000100100110111001001101101110110110001010101\n";
$this->assertEquals($expected, $grid);
$bobj = $barcode->getBarcodeObj('UPCE', '725276');
$grid = $bobj->getGrid();
$expected = "101001000100110110110001001101101110110101111010101\n";
$this->assertEquals($expected, $grid);
$bobj = $barcode->getBarcodeObj('UPCE', '725277');
$grid = $bobj->getGrid();
$expected = "101001000100100110111001001001101110110010001010101\n";
$this->assertEquals($expected, $grid);
$bobj = $barcode->getBarcodeObj('UPCE', '725278');
$grid = $bobj->getGrid();
$expected = "101001000100100110110001001101100100010110111010101\n";
$this->assertEquals($expected, $grid);
$bobj = $barcode->getBarcodeObj('UPCE', '725279');
$grid = $bobj->getGrid();
$expected = "101001000100110110110001001001100100010001011010101\n";
$this->assertEquals($expected, $grid);
$bobj = $barcode->getBarcodeObj('UPCE', '0123456789');
$grid = $bobj->getGrid();
$expected = "101010011100110010010011010000100111010001011010101\n";
$this->assertEquals($expected, $grid);
$bobj = $barcode->getBarcodeObj('UPCE', '012345678912');
$grid = $bobj->getGrid();
$expected = "101011001100110110111101010001101110010011001010101\n";
$this->assertEquals($expected, $grid);
$bobj = $barcode->getBarcodeObj('UPCE', '4210000526');
$grid = $bobj->getGrid();
$expected = "101001110100100110111001001101101011110011001010101\n";
$this->assertEquals($expected, $grid);
$bobj = $barcode->getBarcodeObj('UPCE', '4240000526');
$grid = $bobj->getGrid();
$expected = "101001110100110110100011001101101011110111101010101\n";
$this->assertEquals($expected, $grid);
$bobj = $barcode->getBarcodeObj('UPCE', '4241000526');
$grid = $bobj->getGrid();
$expected = "101001110100100110011101001100101011110011101010101\n";
$this->assertEquals($expected, $grid);
}
}