Update of /cvsroot/stack/stack-1-0/lang/en/doc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15020/lang/en/doc
Modified Files:
author_testsuite.php
Log Message:
Index: author_testsuite.php
===================================================================
RCS file: /cvsroot/stack/stack-1-0/lang/en/doc/author_testsuite.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** author_testsuite.php 14 Jul 2005 17:46:58 -0000 1.4
--- author_testsuite.php 18 Jul 2005 11:58:09 -0000 1.5
***************
*** 1,4 ****
<?php
- <?php
/**
*
--- 1,3 ----
***************
*** 21,26 ****
*/
-
- ?>
require_once($stack_root.'/scripts/stackAuthor.php');
--- 20,23 ----
***************
*** 149,152 ****
--- 146,157 ----
//$testsuite[] = stack_testsuite_construct('FacForm','(x-1)*(x+(1+sqrt(3)*%i)/2)*(x+(1-sqrt(3)*%i)/2)','x^3-1',1,'x','');
+ $testsuite[] = stack_testsuite_construct('PartFrac','1/m','1/n',0,'n','Basic tests');
+ $testsuite[] = stack_testsuite_construct('PartFrac','1/n','1/n',0,'n','');
+ $testsuite[] = stack_testsuite_construct('PartFrac','1/(n+1)-1/n','1/(n+1)-1/n',1,'n','A simple correct answer');
+ $testsuite[] = stack_testsuite_construct('PartFrac','1/(n*(n-1))','1/(n*(n-1))',0,'n','Simple mistakes');
+ $testsuite[] = stack_testsuite_construct('PartFrac','1/(n-1)-1/n^2','1/((n+1)*n)',0,'n','');
+ $testsuite[] = stack_testsuite_construct('PartFrac','1/(n-1)-1/n','1/(n-1)+1/n',0,'n','');
+ $testsuite[] = stack_testsuite_construct('PartFrac','1/(x+1)-1/x','1/(x-1)+1/x',0,'x','');
+
$testsuite[] = stack_testsuite_construct('SA_factored','1/0','0',0,'x','');
|