The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
3answers
18 views

Equivalence Classes in software testing

I am new to Software testing and I am studying the basic techniques. I read the following problem: Identify the Equivalence Classes for the following specification: The program accepts five to nine ...
1
vote
0answers
11 views

functional testing writing equivalence classes

Hey guy's i'm taking a software testing module and trying to study for the final coming up soon but having a little problem getting my head around some of it the question that was asked last year is ...
0
votes
1answer
65 views

Equivalence partitioning, it this an incorrect example in a book?

I am trying to understand this topic and starting with the very basic one (not discrete domain), I believe this is not correct. I cannot post images yet so the description goes like this: Income ...
7
votes
1answer
112 views

Equivalence classes and union/find in a functional language

For an automata algorithm, I require a fast Union-Find data structure in a functional language. Since I need to formally prove the correctness of the data structure, I would prefer a simple structure. ...
0
votes
1answer
37 views

Software testng: Equivalence classes for GUIs?

I have a program I need to make equivalence classes and do boundary-value analysis for. My issue is that all we have talked about in my course is making equivalence classes for programs that take ...
5
votes
3answers
151 views

Definition of Equality

When overloading the "==" operator in c++, is there a standard definition as to what equality explicitly means, or a set of guidelines as how "==" should behave? I currently have a class that does ...
0
votes
0answers
147 views

Equivalence classes, test values and test cases

This is one of the questions in our software Engineering paper.I couldn't answer.Can you please help me to solve this? The following pseudo code program is written to input three numbers as the ...
21
votes
13answers
1k views

Python: simple list merging based on intersections

Consider there are some lists of integers as: #-------------------------------------- 0 [0,1,3] 1 [1,0,3,4,5,10,...] 2 [2,8] 3 [3,1,0,...] ... n [] #-------------------------------------- The ...
5
votes
1answer
383 views

Java: external class for determining equivalence?

Java has a Comparator<T> for providing comparison of objects external to the class itself, to allow for multiple/alternate methods of doing ordered comparisons. But the only standard way of ...
1
vote
4answers
979 views

Microsoft.VisualBasic.FileIO.FileSystem equivalence in C#

I use VS 2008, .net 3.5, C# projects. I need do the same functionally like Microsoft.VisualBasic.FileIO.FileSystem.DeleteDirectory. Anyone says referencing the Microsoft.VisualBasic is often ...
1
vote
0answers
67 views

Difference between lexemes, orthographical variants and syntactic equivalence classes? [closed]

What are the subtleties/differences in the pedantic definitions of lexemes, orthographical variants and syntactic equivalence classes? I am dealing with social media text.
3
votes
1answer
1k views

Implementing equivalence relations in C++ (using boost::disjoint_sets)

Assume you have many elements, and you need to keep track of the equivalence relations between them. If element A is equivalent to element B, it is equivalent to all the other elements B is equivalent ...
5
votes
3answers
1k views

Python many-to-one mapping (creating equivalence classes)

I have a project of converting one database to another. One of the original database columns defines the row's category. This column should be mapped to a new category in the new database. For ...
4
votes
3answers
1k views

What's a good data structure for building equivalence classes on nodes of a tree?

I'm looking for a good data structure to build equivalence classes on nodes of a tree. In an ideal structure, the following operations should be fast (O(1)/O(n) as appropriate) and easy (no ...