Search

Clear filter
Article
Alexander Koblov · Jun 24, 2016

[bugreport] Preview for comment shows old comment

'test 2') d) Click preview again e) Notice that preview shows comment content before editing (e.g. 'test')
Article
Liam Evans · Jul 14

Hosting a Flask REST API on InterSystems IRIS using WSGI

@app.route('/test') def test(): return "Test" Here we define a route /test using the @app.route decorator. This binds the URL /test to the Python function test().
Question
Jason Melton · Jun 27, 2024

ZF(-100) and qpdf

, this will work: d $ZF(-100,"/logcmd", "qpdf", "--encrypt", "test123", "test123", "256", "--", "C:\test\basement.pdf", "c:\test\basementenc.pdf")
Question
Ruslan K · May 23, 2017

Placeholder in dataCombo

Hi Ruslan,I found an alternative,Suppose your dataCombo id is 'test' ( <dataCombo id="test" ...): Method %OnDrawHTMLBody() As %Status{ &html<<script type="text/javascript
Question
Maik Gode · Dec 2, 2020

Trigger UnitTests programmatically in a cls file

I have 2 classes: One for handling which test class should be invoked and then a test class that is extending %UnitTest.TestCase The test class: Class my.class.path.testing.EingangTest
Article
Andre Larsen Barbosa · Jul 30

Toolqa - The wait is over

type and limit compliance; Compile and save the generated test class in the IRIS environment; Provide an executable Run() method within the generated test class to run the tests
Question
Dmitry Maslennikov · Mar 6, 2019

Increment value in property with SQL

CREATE TABLE test ( identifier VARCHAR(200) NOT NULL, value INTEGER COMPUTEONCHANGE("%%UPDATE") COMPUTECODE {&sql(select max(value)+1 into :{*} from test
Question
Paster-Bachar Gadi · Sep 27, 2016

XMLObject.OutputToString and Hebrew

>write msg.OutputToString() <Test>???????
Question
Olga Smolyar · Jan 6, 2020

Is it possible to add an arbitrary key-value pair (property) into ^UnitTest.results?

To get the Unit Test result ID anywhere in the tests call: set id = $get(^UnitTest.Result,0)+1 Note, that I assume you're running only one test suite at a time.
Article
Randy Pallotta · Jul 27, 2016

"dynamic" headers and trailers for ensemble record maps

Number of Records: 854321|Test Patient|169 MY ST||CITYGOESHERE|MI|1234512345|Test Patient|169 MY ST||CITYGOESHERE|MI|1234554321|Test Patient|169 MY ST||CITYGOESHERE|MI|1234523456|Test
Question
Padmaja Konduru · Sep 19, 2023

How to get Customized SSL/TLS certificate expiry alerts using ObjectScript

") fields("Issuer")="L=test,CN=test,O=test,ST=test,C=us" fields("SerialNumber")=0 fields("Subject")="L=test,CN=test,O=test,ST=test,C=us" fields("SubjectKeyIdentifier")=$c(144)_"¾&
Question
Cedric Montanuy · Sep 1, 2023

METHOD DOES NOT EXIST during unittest attempts

I have the class i want to test in the very same folder as my test class. I followed the tutorial in the documentation.
Question
Flávio Lúcio Naves Júnior · Oct 15, 2021

How to export class to xml without namespace

/test"> <s01:location>New York NY 10036</s01:location> </ResultadoCultura> </Test> Someone can help me?
Question
Jairton Junior · Feb 19, 2021

Is there a "SELECT LAST_SERIAL()"?

CREATE TABLE test ( test_id serial NOT NULL, name varchar(100) NULL, CONSTRAINT pk_test PRIMARY KEY (test_id)); INSERT INTO test (test_id, name) values (10, 'test 10');