1<?php
2/**
3 * @author    Andreas Fischer <bantu@phpbb.com>
4 * @copyright 2013 Andreas Fischer
5 * @license   http://www.opensource.org/licenses/mit-license.html  MIT License
6 */
7
8use phpseclib\Crypt\Base;
9
10class Unit_Crypt_AES_InternalTest extends Unit_Crypt_AES_TestCase
11{
12    protected function setUp()
13    {
14        $this->engine = Base::ENGINE_INTERNAL;
15    }
16}
17