Skip to content

Commit

Permalink
Merge branch 'develop' into devsecops
Browse files Browse the repository at this point in the history
  • Loading branch information
aleks-ivanov committed Aug 8, 2023
2 parents ec7fb29 + 3db256e commit 08ca5e0
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,11 @@ You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
using System;
using iText.Test;

namespace iText.Commons.Datastructures {
[NUnit.Framework.Category("UnitTest")]
public class BiMapTest {
public class BiMapTest : ExtendedITextTest {
[NUnit.Framework.Test]
public virtual void SizeTest01() {
BiMap<String, int> map = new BiMap<String, int>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ You should have received a copy of the GNU Affero General Public License

namespace iText.Forms.Form.Element {
[NUnit.Framework.Category("UnitTest")]
public class SelectFieldItemTest : ITextTest {
public class SelectFieldItemTest : ExtendedITextTest {
[NUnit.Framework.Test]
public virtual void NewSelectFieldItem2ParamConstructorTest() {
SelectFieldItem item = new SelectFieldItem("exportValue", "displayValue");
Expand Down
3 changes: 2 additions & 1 deletion itext.tests/itext.io.tests/itext/io/util/EnumUtilTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,11 @@ You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
using System.Collections.Generic;
using iText.Test;

namespace iText.IO.Util {
[NUnit.Framework.Category("UnitTest")]
public class EnumUtilTest {
public class EnumUtilTest : ExtendedITextTest {
[NUnit.Framework.Test]
public virtual void TestEnumUtilSameAmount() {
NUnit.Framework.Assert.AreEqual(3, EnumUtil.GetAllValuesOfEnum<TestEnum1>().Count);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,11 @@ You should have received a copy of the GNU Affero General Public License
using System.IO;
using iText.Commons.Utils;
using iText.IO.Source;
using iText.Test;

namespace iText.Kernel.Pdf {
[NUnit.Framework.Category("IntegrationTest")]
public class PdfDeveloperExtensionTest {
public class PdfDeveloperExtensionTest : ExtendedITextTest {
public static readonly PdfDeveloperExtension SIMPLE_EXTENSION_L3 = new PdfDeveloperExtension(new PdfName("Test"
), PdfName.Pdf_Version_1_7, 3);

Expand Down
2 changes: 0 additions & 2 deletions itext.tests/itext.pdfa.tests/itext/pdfa/PdfAFormFieldTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,7 @@ public static void BeforeClass() {
}

[NUnit.Framework.Test]
[NUnit.Framework.Ignore("DEVSIX-6319")]
public virtual void PdfAButtonFieldTest() {
// TODO DEVSIX-6319 Radio buttons shall be widgets instead of form fields
PdfDocument pdf;
Stream @is = new FileStream(SOURCE_FOLDER + "sRGB Color Space Profile.icm", FileMode.Open, FileAccess.Read
);
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion port-hash
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2e4713f9b06928aba6213afcdaab6cb38c2b12a4
04b7b5ffa4988d20a4d30098d3bb69347eed7202

0 comments on commit 08ca5e0

Please sign in to comment.